-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcommitfest.css
176 lines (153 loc) · 3.4 KB
/
commitfest.css
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
* 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;
height: unset;
display: inline-block;
}
div.form-group div.controls > div.form-control:has(input[type="checkbox"]) {
display: flex;
gap: 8px;
}
div.form-group div.controls input.threadpick-input {
width: 80%;
display: inline;
}
/*
* Attach thread dialog
*/
#attachThreadListWrap.loading {
display: block;
background: url("/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("/media/commitfest/spinner.gif") no-repeat center;
width: 124px;
height: 124px;
margin: 0 auto;
}
#annotateMessageBody.loading * {
display: none;
}
.cfbot-summary img {
margin-top: -3px;
}
.github-logo {
height: 20px;
}
.additions {
font-weight: bold;
color: green;
}
.deletions {
font-weight: bold;
color: red;
}
.search-bar {
display: inline-block;
}
/* Header styling */
#workflow-transitions-header {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
color: #333;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
/* Table styling */
#workflow-transitions-table {
width: 100%;
max-width: 500px; /* Updated max-width */
border-collapse: collapse;
margin: 20px 0; /* Remove centering */
font-size: 16px;
text-align: left;
}
#workflow-transitions-table th,
#workflow-transitions-table td {
border: 1px solid #ddd;
padding: 8px;
width: 25%; /* Ensure all columns have the same width */
text-align: center; /* Center-align cell labels */
}
#workflow-transitions-table th {
background-color: #f4f4f4;
color: #333;
font-weight: bold;
text-align: center;
}
#workflow-transitions-table tr:nth-child(even) {
background-color: #f9f9f9;
}
#workflow-transitions-table tr:hover {
background-color: #f1f1f1;
}
#workflow-schedule-table {
width: 100%;
max-width: 800px;
border-collapse: collapse;
margin: 20px 0; /* Remove centering */
font-size: 16px;
text-align: left;
}
#workflow-schedule-table th,
#workflow-schedule-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: center; /* Center-align cell labels */
}
#workflow-schedule-table td {
width: 15%; /* First four columns */
}
#workflow-schedule-table td:nth-child(5),
#workflow-schedule-table td:nth-child(6) {
width: 20%; /* Last two columns */
}
#workflow-schedule-table th {
background-color: #f4f4f4;
color: #333;
font-weight: bold;
text-align: center;
}
#workflow-schedule-table tr:nth-child(even) {
background-color: #f9f9f9;
}
#workflow-schedule-table tr:hover {
background-color: #f1f1f1;
}