blob: 07bfa102c962556f864e35aba7df1b9d3cf94e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* commitfest.postgresql.org specific styles
*/
/* For close button with float disabled */
.close-nofloat {
float: none !important;
}
/* General form styling */
.form-horizontal div.form-group {
margin-bottom: 10px;
}
div.form-group div.controls ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
div.form-group div.controls ul li {
display: inline;
}
div.form-group div.controls ul li label {
display: inline;
font-weight: normal;
vertical-align:middle;
}
div.form-group div.controls ul li label input {
display: inline;
vertical-align:middle;
}
div.form-group div.controls input[type='checkbox'] {
width: 10px;
}
div.form-group div.controls input.threadpick-input {
width: 80%;
display: inline;
}
/*
* Attach thread dialog
*/
#attachThreadListWrap.loading {
display: block;
background: url('/https/git.postgresql.org/media/commitfest/spinner.gif') no-repeat center;
width: 124px;
height: 124px;
margin: 0 auto;
}
#attachThreadListWrap.loading * {
display: none;
}
/*
* Annotate message dialog */
#annotateMessageBody.loading {
display: block;
background: url('/https/git.postgresql.org/media/commitfest/spinner.gif') no-repeat center;
width: 124px;
height: 124px;
margin: 0 auto;
}
#annotateMessageBody.loading * {
display: none;
}
|