-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcommitfest.css
More file actions
154 lines (133 loc) · 2.9 KB
/
commitfest.css
File metadata and controls
154 lines (133 loc) · 2.9 KB
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
/*
* commitfest.postgresql.org specific styles
*/
/* Bootstrap 5 inline delete/close buttons */
.btn-outline-danger.btn-sm {
font-size: 0.75rem;
line-height: 1;
padding: 0.25rem 0.5rem;
border-color: #dc3545;
color: #dc3545;
background-color: transparent;
}
.btn-outline-danger.btn-sm:hover {
background-color: #f8d7da;
border-color: #dc3545;
color: #721c24;
}
/* 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;
}
/* Navigation improvements for Bootstrap 5 */
nav[aria-label="breadcrumb"] {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
nav[aria-label="breadcrumb"] .breadcrumb {
margin-bottom: 0;
}
nav[aria-label="breadcrumb"] .float-end {
font-size: 0.875rem;
}
/* Override Bootstrap warning color to be less harsh */
.badge.bg-warning {
background-color: #cc8500 !important; /* Muted amber/gold instead of bright yellow */
color: white !important;
}
/* Remove underlines from tag links */
a:has(.badge) {
text-decoration: none !important;
}
a:has(.badge):hover {
text-decoration: none !important;
}
a .badge {
text-decoration: none !important;
}
a:hover .badge {
text-decoration: none !important;
}
/* Make GitHub icon white in dark navbar */
.navbar-dark .github-logo {
filter: brightness(0) invert(1);
}
/* Simple close button without float */
.btn-close-nofloat {
float: none;
margin-left: 0.5rem;
}