Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2019 Jerome Kasper <neon.king.fr@gmail.com>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
4 8a35f56c 2022-07-16 thomas *
5 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
6 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
7 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
8 8a35f56c 2022-07-16 thomas *
9 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 8a35f56c 2022-07-16 thomas */
17 8a35f56c 2022-07-16 thomas
18 8a35f56c 2022-07-16 thomas /* general sections */
19 8a35f56c 2022-07-16 thomas
20 8a35f56c 2022-07-16 thomas a {
21 8a35f56c 2022-07-16 thomas color: #444444;
22 8a35f56c 2022-07-16 thomas text-decoration: none;
23 8a35f56c 2022-07-16 thomas }
24 8a35f56c 2022-07-16 thomas a:hover {
25 8a35f56c 2022-07-16 thomas color: Gold;
26 8a35f56c 2022-07-16 thomas text-decoration: none;
27 8a35f56c 2022-07-16 thomas }
28 8a35f56c 2022-07-16 thomas body {
29 8a35f56c 2022-07-16 thomas background-color: #ffffff;
30 8a35f56c 2022-07-16 thomas color: #000000;
31 8a35f56c 2022-07-16 thomas margin: 0;
32 8a35f56c 2022-07-16 thomas padding: 0;
33 8a35f56c 2022-07-16 thomas font-family: Arial, sans-serif;
34 8a35f56c 2022-07-16 thomas }
35 8a35f56c 2022-07-16 thomas
36 8a35f56c 2022-07-16 thomas .diff_minus, .diff_submodule {
37 8a35f56c 2022-07-16 thomas color: magenta;
38 8a35f56c 2022-07-16 thomas }
39 8a35f56c 2022-07-16 thomas .diff_plus, .diff_symlink, .diff_author {
40 8a35f56c 2022-07-16 thomas color: darkcyan;
41 8a35f56c 2022-07-16 thomas }
42 8a35f56c 2022-07-16 thomas .diff_chunk_header, .diff_date {
43 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
44 8a35f56c 2022-07-16 thomas color: yellow;
45 8a35f56c 2022-07-16 thomas }
46 8a35f56c 2022-07-16 thomas .diff_meta, .diff_executable, .diff_commit {
47 8a35f56c 2022-07-16 thomas color: green;
48 8a35f56c 2022-07-16 thomas }
49 8a35f56c 2022-07-16 thomas .diff_directory {
50 8a35f56c 2022-07-16 thomas color: blue;
51 8a35f56c 2022-07-16 thomas }
52 8a35f56c 2022-07-16 thomas
53 8a35f56c 2022-07-16 thomas #logo {
54 8a35f56c 2022-07-16 thomas height: 50px;
55 8a35f56c 2022-07-16 thomas }
56 9e0c279a 2022-08-10 thomas .refs_str {
57 8a35f56c 2022-07-16 thomas background-color: #243647;
58 8a35f56c 2022-07-16 thomas color: #ffffff;
59 8a35f56c 2022-07-16 thomas font-style: italic;
60 8a35f56c 2022-07-16 thomas }
61 9e0c279a 2022-08-10 thomas .dotted_line {
62 8a35f56c 2022-07-16 thomas clear: left;
63 8a35f56c 2022-07-16 thomas float: left;
64 8a35f56c 2022-07-16 thomas width: 100%;
65 8a35f56c 2022-07-16 thomas border-top: 1px dotted #444444;
66 8a35f56c 2022-07-16 thomas }
67 8a35f56c 2022-07-16 thomas #header {
68 8a35f56c 2022-07-16 thomas overflow: auto;
69 8a35f56c 2022-07-16 thomas width: 100%;
70 8a35f56c 2022-07-16 thomas background-image: linear-gradient(to right, White, LightSlateGray);
71 8a35f56c 2022-07-16 thomas }
72 8a35f56c 2022-07-16 thomas #header a {
73 8a35f56c 2022-07-16 thomas color: #ffffff;
74 8a35f56c 2022-07-16 thomas font-size: 1.2em;
75 8a35f56c 2022-07-16 thomas text-decoration: none;
76 8a35f56c 2022-07-16 thomas }
77 8a35f56c 2022-07-16 thomas #header a:hover {
78 8a35f56c 2022-07-16 thomas color: Gold;
79 8a35f56c 2022-07-16 thomas font-size: 1.2em;
80 8a35f56c 2022-07-16 thomas text-decoration: none;
81 8a35f56c 2022-07-16 thomas }
82 8a35f56c 2022-07-16 thomas #site_path {
83 8a35f56c 2022-07-16 thomas clear: left;
84 8a35f56c 2022-07-16 thomas float: left;
85 8a35f56c 2022-07-16 thomas overflow: auto;
86 8a35f56c 2022-07-16 thomas width: 100%;
87 8a35f56c 2022-07-16 thomas background-color: #243647;
88 8a35f56c 2022-07-16 thomas }
89 8a35f56c 2022-07-16 thomas #site_link {
90 8a35f56c 2022-07-16 thomas float: left;
91 8a35f56c 2022-07-16 thomas width: 40%;
92 8a35f56c 2022-07-16 thomas padding-left: 10px;
93 8a35f56c 2022-07-16 thomas padding-top: 5px;
94 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
95 8a35f56c 2022-07-16 thomas color: #ffffff;
96 8a35f56c 2022-07-16 thomas overflow: hidden;
97 8a35f56c 2022-07-16 thomas }
98 8a35f56c 2022-07-16 thomas #site_link a {
99 8a35f56c 2022-07-16 thomas color: #ffffff;
100 8a35f56c 2022-07-16 thomas text-decoration: none;
101 8a35f56c 2022-07-16 thomas }
102 8a35f56c 2022-07-16 thomas #got_link {
103 8a35f56c 2022-07-16 thomas float: left;
104 8a35f56c 2022-07-16 thomas padding-bottom: 10px;
105 8a35f56c 2022-07-16 thomas padding-top: 10px;
106 8a35f56c 2022-07-16 thomas }
107 8a35f56c 2022-07-16 thomas #content {
108 8a35f56c 2022-07-16 thomas width: 100%;
109 af0d6ce1 2023-01-06 thomas float: left;
110 af0d6ce1 2023-01-06 thomas clear: both;
111 8a35f56c 2022-07-16 thomas }
112 8a35f56c 2022-07-16 thomas #np_wrapper {
113 8a35f56c 2022-07-16 thomas clear: left;
114 8a35f56c 2022-07-16 thomas float: left;
115 8a35f56c 2022-07-16 thomas width: 100%;
116 8a35f56c 2022-07-16 thomas border-bottom: 1px dotted #444444;
117 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
118 8a35f56c 2022-07-16 thomas overflow: hidden;
119 8a35f56c 2022-07-16 thomas }
120 8a35f56c 2022-07-16 thomas #nav_prev {
121 8a35f56c 2022-07-16 thomas float: left;
122 8a35f56c 2022-07-16 thomas padding-left: 10px;
123 8a35f56c 2022-07-16 thomas padding-top: 5px;
124 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
125 8a35f56c 2022-07-16 thomas overflow: visible;
126 8a35f56c 2022-07-16 thomas }
127 8a35f56c 2022-07-16 thomas #nav_next {
128 8a35f56c 2022-07-16 thomas padding-right: 10px;
129 8a35f56c 2022-07-16 thomas padding-top: 5px;
130 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
131 8a35f56c 2022-07-16 thomas text-align: right;
132 8a35f56c 2022-07-16 thomas overflow: hidden;
133 8a35f56c 2022-07-16 thomas }
134 9e0c279a 2022-08-10 thomas .navs_wrapper {
135 8a35f56c 2022-07-16 thomas clear: left;
136 8a35f56c 2022-07-16 thomas float: left;
137 8a35f56c 2022-07-16 thomas width: 100%;
138 8a35f56c 2022-07-16 thomas background-color: #ced7e0;
139 8a35f56c 2022-07-16 thomas }
140 9e0c279a 2022-08-10 thomas .navs {
141 8a35f56c 2022-07-16 thomas padding-left: 10px;
142 8a35f56c 2022-07-16 thomas padding-top: 2px;
143 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
144 8a35f56c 2022-07-16 thomas font-size: .8em;
145 8a35f56c 2022-07-16 thomas }
146 8a35f56c 2022-07-16 thomas #site_owner_wrapper {
147 8a35f56c 2022-07-16 thomas clear: left;
148 8a35f56c 2022-07-16 thomas float: left;
149 8a35f56c 2022-07-16 thomas width: 100%;
150 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
151 8a35f56c 2022-07-16 thomas color: #ffffff;
152 8a35f56c 2022-07-16 thomas }
153 8a35f56c 2022-07-16 thomas #site_owner {
154 8a35f56c 2022-07-16 thomas padding-left: 10px;
155 8a35f56c 2022-07-16 thomas padding-top: 5px;
156 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
157 8a35f56c 2022-07-16 thomas }
158 8a35f56c 2022-07-16 thomas #description_title {
159 8a35f56c 2022-07-16 thomas clear: left;
160 8a35f56c 2022-07-16 thomas float: left;
161 8a35f56c 2022-07-16 thomas width: 6.5em;
162 8a35f56c 2022-07-16 thomas padding-left: 10px;
163 8a35f56c 2022-07-16 thomas padding-top: 5px;
164 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
165 8a35f56c 2022-07-16 thomas }
166 8a35f56c 2022-07-16 thomas #description {
167 8a35f56c 2022-07-16 thomas float: left;
168 8a35f56c 2022-07-16 thomas width: 72%;
169 8a35f56c 2022-07-16 thomas padding-top: 5px;
170 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
171 8a35f56c 2022-07-16 thomas }
172 8a35f56c 2022-07-16 thomas #repo_owner_title {
173 8a35f56c 2022-07-16 thomas clear: left;
174 8a35f56c 2022-07-16 thomas float: left;
175 8a35f56c 2022-07-16 thomas width: 6.5em;
176 8a35f56c 2022-07-16 thomas padding-left: 10px;
177 8a35f56c 2022-07-16 thomas padding-top: 5px;
178 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
179 8a35f56c 2022-07-16 thomas }
180 8a35f56c 2022-07-16 thomas #repo_owner {
181 8a35f56c 2022-07-16 thomas float: left;
182 8a35f56c 2022-07-16 thomas width: 72%;
183 8a35f56c 2022-07-16 thomas padding-top: 5px;
184 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
185 8a35f56c 2022-07-16 thomas }
186 8a35f56c 2022-07-16 thomas #last_change_title {
187 8a35f56c 2022-07-16 thomas clear: left;
188 8a35f56c 2022-07-16 thomas float: left;
189 8a35f56c 2022-07-16 thomas width: 6.5em;
190 8a35f56c 2022-07-16 thomas padding-left: 10px;
191 8a35f56c 2022-07-16 thomas padding-top: 5px;
192 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
193 8a35f56c 2022-07-16 thomas }
194 8a35f56c 2022-07-16 thomas #last_change {
195 8a35f56c 2022-07-16 thomas float: left;
196 8a35f56c 2022-07-16 thomas width: 72%;
197 8a35f56c 2022-07-16 thomas padding-top: 5px;
198 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
199 8a35f56c 2022-07-16 thomas }
200 8a35f56c 2022-07-16 thomas #cloneurl_title {
201 8a35f56c 2022-07-16 thomas clear: left;
202 8a35f56c 2022-07-16 thomas float: left;
203 8a35f56c 2022-07-16 thomas width: 6.5em;
204 8a35f56c 2022-07-16 thomas padding-left: 10px;
205 8a35f56c 2022-07-16 thomas padding-top: 5px;
206 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
207 8a35f56c 2022-07-16 thomas }
208 8a35f56c 2022-07-16 thomas #cloneurl {
209 8a35f56c 2022-07-16 thomas float: left;
210 8a35f56c 2022-07-16 thomas width: 72%;
211 8a35f56c 2022-07-16 thomas padding-top: 5px;
212 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
213 8a35f56c 2022-07-16 thomas overflow: auto;
214 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
215 8a35f56c 2022-07-16 thomas }
216 8a35f56c 2022-07-16 thomas
217 9e0c279a 2022-08-10 thomas .header_commit_title {
218 8a35f56c 2022-07-16 thomas clear: left;
219 8a35f56c 2022-07-16 thomas float: left;
220 8a35f56c 2022-07-16 thomas width: 6.5em;
221 8a35f56c 2022-07-16 thomas padding-left: 10px;
222 8a35f56c 2022-07-16 thomas padding-top: 2px;
223 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
224 8a35f56c 2022-07-16 thomas }
225 9e0c279a 2022-08-10 thomas .header_commit {
226 8a35f56c 2022-07-16 thomas float: left;
227 8a35f56c 2022-07-16 thomas width: 72%;
228 8a35f56c 2022-07-16 thomas padding-top: 2px;
229 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
230 8a35f56c 2022-07-16 thomas }
231 9e0c279a 2022-08-10 thomas .header_author_title {
232 8a35f56c 2022-07-16 thomas clear: left;
233 8a35f56c 2022-07-16 thomas float: left;
234 8a35f56c 2022-07-16 thomas width: 6.5em;
235 8a35f56c 2022-07-16 thomas padding-left: 10px;
236 8a35f56c 2022-07-16 thomas padding-top: 2px;
237 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
238 8a35f56c 2022-07-16 thomas }
239 9e0c279a 2022-08-10 thomas .header_author {
240 8a35f56c 2022-07-16 thomas float: left;
241 8a35f56c 2022-07-16 thomas width: 72%;
242 8a35f56c 2022-07-16 thomas padding-top: 2px;
243 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
244 8a35f56c 2022-07-16 thomas }
245 9e0c279a 2022-08-10 thomas .header_age_title {
246 8a35f56c 2022-07-16 thomas clear: left;
247 8a35f56c 2022-07-16 thomas float: left;
248 8a35f56c 2022-07-16 thomas width: 6.5em;
249 8a35f56c 2022-07-16 thomas padding-left: 10px;
250 8a35f56c 2022-07-16 thomas padding-top: 2px;
251 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
252 8a35f56c 2022-07-16 thomas }
253 9e0c279a 2022-08-10 thomas .header_age {
254 8a35f56c 2022-07-16 thomas float: left;
255 8a35f56c 2022-07-16 thomas width: 72%;
256 8a35f56c 2022-07-16 thomas padding-top: 2px;
257 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
258 8a35f56c 2022-07-16 thomas }
259 8a35f56c 2022-07-16 thomas #header_commit_msg_title {
260 8a35f56c 2022-07-16 thomas clear: left;
261 8a35f56c 2022-07-16 thomas float: left;
262 8a35f56c 2022-07-16 thomas width: 6.5em;
263 8a35f56c 2022-07-16 thomas padding-left: 10px;
264 8a35f56c 2022-07-16 thomas padding-top: 2px;
265 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
266 8a35f56c 2022-07-16 thomas }
267 8a35f56c 2022-07-16 thomas #header_commit_msg {
268 8a35f56c 2022-07-16 thomas float: left;
269 8a35f56c 2022-07-16 thomas width: 72%;
270 8a35f56c 2022-07-16 thomas padding-top: 2px;
271 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
272 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
273 8a35f56c 2022-07-16 thomas }
274 8a35f56c 2022-07-16 thomas #header_tree_title {
275 8a35f56c 2022-07-16 thomas clear: left;
276 8a35f56c 2022-07-16 thomas float: left;
277 8a35f56c 2022-07-16 thomas width: 6.5em;
278 8a35f56c 2022-07-16 thomas padding-left: 10px;
279 8a35f56c 2022-07-16 thomas padding-top: 2px;
280 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
281 8a35f56c 2022-07-16 thomas }
282 8a35f56c 2022-07-16 thomas #header_tree {
283 8a35f56c 2022-07-16 thomas float: left;
284 8a35f56c 2022-07-16 thomas width: 72%;
285 8a35f56c 2022-07-16 thomas padding-top: 2px;
286 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
287 8a35f56c 2022-07-16 thomas }
288 8a35f56c 2022-07-16 thomas
289 8a35f56c 2022-07-16 thomas #err_content {
290 8a35f56c 2022-07-16 thomas clear: left;
291 8a35f56c 2022-07-16 thomas float: left;
292 8a35f56c 2022-07-16 thomas padding-left: 20px;
293 8a35f56c 2022-07-16 thomas padding-top: 20px;
294 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
295 8a35f56c 2022-07-16 thomas }
296 8a35f56c 2022-07-16 thomas
297 8a35f56c 2022-07-16 thomas #briefs_title_wrapper {
298 8a35f56c 2022-07-16 thomas clear: left;
299 8a35f56c 2022-07-16 thomas float: left;
300 8a35f56c 2022-07-16 thomas width: 100%;
301 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
302 8a35f56c 2022-07-16 thomas color: #ffffff;
303 8a35f56c 2022-07-16 thomas }
304 8a35f56c 2022-07-16 thomas #briefs_title {
305 8a35f56c 2022-07-16 thomas padding-left: 10px;
306 8a35f56c 2022-07-16 thomas padding-top: 5px;
307 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
308 8a35f56c 2022-07-16 thomas }
309 8a35f56c 2022-07-16 thomas #briefs_content {
310 8a35f56c 2022-07-16 thomas clear: left;
311 8a35f56c 2022-07-16 thomas float: left;
312 8a35f56c 2022-07-16 thomas width: 100%;
313 8a35f56c 2022-07-16 thomas }
314 9e0c279a 2022-08-10 thomas .briefs_age {
315 8a35f56c 2022-07-16 thomas padding-left: 10px;
316 8a35f56c 2022-07-16 thomas padding-top: 5px;
317 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
318 8a35f56c 2022-07-16 thomas float: left;
319 8a35f56c 2022-07-16 thomas width: 7.5em;
320 8a35f56c 2022-07-16 thomas overflow: auto;
321 8a35f56c 2022-07-16 thomas }
322 9e0c279a 2022-08-10 thomas .briefs_author {
323 8a35f56c 2022-07-16 thomas float: left;
324 8a35f56c 2022-07-16 thomas padding-top: 5px;
325 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
326 8a35f56c 2022-07-16 thomas width: 8.5em;
327 8a35f56c 2022-07-16 thomas font-style: italic;
328 8a35f56c 2022-07-16 thomas overflow: auto;
329 8a35f56c 2022-07-16 thomas }
330 9e0c279a 2022-08-10 thomas .briefs_log {
331 8a35f56c 2022-07-16 thomas float: left;
332 8a35f56c 2022-07-16 thomas padding-left: 10px;
333 8a35f56c 2022-07-16 thomas padding-right: 10px;
334 8a35f56c 2022-07-16 thomas padding-top: 5px;
335 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
336 8a35f56c 2022-07-16 thomas width: 65%;
337 8a35f56c 2022-07-16 thomas }
338 8a35f56c 2022-07-16 thomas
339 8a35f56c 2022-07-16 thomas #tags_title_wrapper {
340 8a35f56c 2022-07-16 thomas clear: left;
341 8a35f56c 2022-07-16 thomas float: left;
342 8a35f56c 2022-07-16 thomas width: 100%;
343 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
344 8a35f56c 2022-07-16 thomas color: #ffffff;
345 8a35f56c 2022-07-16 thomas }
346 8a35f56c 2022-07-16 thomas #tags_title {
347 8a35f56c 2022-07-16 thomas padding-left: 10px;
348 8a35f56c 2022-07-16 thomas padding-top: 5px;
349 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
350 8a35f56c 2022-07-16 thomas }
351 8a35f56c 2022-07-16 thomas #tags_content {
352 8a35f56c 2022-07-16 thomas clear: left;
353 8a35f56c 2022-07-16 thomas float: left;
354 8a35f56c 2022-07-16 thomas width: 100%;
355 8a35f56c 2022-07-16 thomas }
356 9e0c279a 2022-08-10 thomas .tag_age {
357 8a35f56c 2022-07-16 thomas padding-left: 10px;
358 8a35f56c 2022-07-16 thomas padding-top: 5px;
359 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
360 8a35f56c 2022-07-16 thomas float: left;
361 8a35f56c 2022-07-16 thomas width: 7.5em;
362 8a35f56c 2022-07-16 thomas overflow: auto;
363 8a35f56c 2022-07-16 thomas }
364 9e0c279a 2022-08-10 thomas .tag_log {
365 8a35f56c 2022-07-16 thomas float: left;
366 8a35f56c 2022-07-16 thomas padding-left: 10px;
367 8a35f56c 2022-07-16 thomas padding-right: 10px;
368 8a35f56c 2022-07-16 thomas padding-top: 5px;
369 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
370 8a35f56c 2022-07-16 thomas width: 65%;
371 8a35f56c 2022-07-16 thomas }
372 8a35f56c 2022-07-16 thomas
373 8a35f56c 2022-07-16 thomas #tag_header_wrapper {
374 8a35f56c 2022-07-16 thomas clear: left;
375 8a35f56c 2022-07-16 thomas float: left;
376 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
377 8a35f56c 2022-07-16 thomas width: 100%;
378 8a35f56c 2022-07-16 thomas }
379 8a35f56c 2022-07-16 thomas #tag_header {
380 8a35f56c 2022-07-16 thomas float: left;
381 8a35f56c 2022-07-16 thomas padding-left: 10px;
382 8a35f56c 2022-07-16 thomas padding-top: 5px;
383 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
384 8a35f56c 2022-07-16 thomas width: 80%;
385 8a35f56c 2022-07-16 thomas }
386 9e0c279a 2022-08-10 thomas .tag {
387 8a35f56c 2022-07-16 thomas float: left;
388 8a35f56c 2022-07-16 thomas width: 8.5em;
389 8a35f56c 2022-07-16 thomas font-style: italic;
390 8a35f56c 2022-07-16 thomas padding-top: 5px;
391 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
392 8a35f56c 2022-07-16 thomas }
393 8a35f56c 2022-07-16 thomas #tag_commit {
394 8a35f56c 2022-07-16 thomas clear: left;
395 8a35f56c 2022-07-16 thomas float: left;
396 8a35f56c 2022-07-16 thomas padding-left: 20px;
397 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
398 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
399 8a35f56c 2022-07-16 thomas }
400 8a35f56c 2022-07-16 thomas
401 8a35f56c 2022-07-16 thomas #index_header {
402 8a35f56c 2022-07-16 thomas clear: left;
403 8a35f56c 2022-07-16 thomas float: left;
404 8a35f56c 2022-07-16 thomas overflow: auto;
405 8a35f56c 2022-07-16 thomas width: 100%;
406 8a35f56c 2022-07-16 thomas background-color: Khaki;
407 8a35f56c 2022-07-16 thomas }
408 8a35f56c 2022-07-16 thomas #index_header_project {
409 8a35f56c 2022-07-16 thomas clear: left;
410 8a35f56c 2022-07-16 thomas float: left;
411 8a35f56c 2022-07-16 thomas width: 20%;
412 8a35f56c 2022-07-16 thomas padding: 10px;
413 8a35f56c 2022-07-16 thomas }
414 8a35f56c 2022-07-16 thomas #index_header_description {
415 8a35f56c 2022-07-16 thomas float: left;
416 8a35f56c 2022-07-16 thomas width: 30%;
417 8a35f56c 2022-07-16 thomas padding: 10px;
418 8a35f56c 2022-07-16 thomas }
419 8a35f56c 2022-07-16 thomas #index_header_owner {
420 8a35f56c 2022-07-16 thomas float: left;
421 8a35f56c 2022-07-16 thomas width: 12%;
422 8a35f56c 2022-07-16 thomas padding: 10px;
423 8a35f56c 2022-07-16 thomas }
424 8a35f56c 2022-07-16 thomas #index_header_age {
425 8a35f56c 2022-07-16 thomas padding: 10px;
426 8a35f56c 2022-07-16 thomas overflow: hidden;
427 8a35f56c 2022-07-16 thomas }
428 9e0c279a 2022-08-10 thomas .index_wrapper {
429 8a35f56c 2022-07-16 thomas clear: left;
430 8a35f56c 2022-07-16 thomas float: left;
431 8a35f56c 2022-07-16 thomas width: 100%;
432 8a35f56c 2022-07-16 thomas }
433 9e0c279a 2022-08-10 thomas .index_project {
434 8a35f56c 2022-07-16 thomas float: left;
435 8a35f56c 2022-07-16 thomas width: 20%;
436 8a35f56c 2022-07-16 thomas padding: 10px;
437 8a35f56c 2022-07-16 thomas overflow: hidden;
438 8a35f56c 2022-07-16 thomas }
439 9e0c279a 2022-08-10 thomas .index_project_description {
440 8a35f56c 2022-07-16 thomas float: left;
441 8a35f56c 2022-07-16 thomas width: 30%;
442 8a35f56c 2022-07-16 thomas padding: 10px;
443 8a35f56c 2022-07-16 thomas overflow: auto;
444 8a35f56c 2022-07-16 thomas }
445 9e0c279a 2022-08-10 thomas .index_project_owner {
446 8a35f56c 2022-07-16 thomas float: left;
447 8a35f56c 2022-07-16 thomas width: 12%;
448 8a35f56c 2022-07-16 thomas padding: 10px;
449 8a35f56c 2022-07-16 thomas overflow: hidden;
450 8a35f56c 2022-07-16 thomas }
451 9e0c279a 2022-08-10 thomas .index_project_age {
452 8a35f56c 2022-07-16 thomas float: left;
453 8a35f56c 2022-07-16 thomas width: 14%;
454 8a35f56c 2022-07-16 thomas padding: 10px;
455 8a35f56c 2022-07-16 thomas overflow: visible;
456 8a35f56c 2022-07-16 thomas }
457 9e0c279a 2022-08-10 thomas .index_project a {
458 8a35f56c 2022-07-16 thomas color: #444444;
459 8a35f56c 2022-07-16 thomas text-decoration: none;
460 8a35f56c 2022-07-16 thomas }
461 9e0c279a 2022-08-10 thomas .index_project a:hover {
462 8a35f56c 2022-07-16 thomas color: SteelBlue;
463 8a35f56c 2022-07-16 thomas text-decoration: none;
464 8a35f56c 2022-07-16 thomas }
465 8a35f56c 2022-07-16 thomas #index_next a {
466 8a35f56c 2022-07-16 thomas color: #444444;
467 8a35f56c 2022-07-16 thomas text-decoration: none;
468 8a35f56c 2022-07-16 thomas }
469 8a35f56c 2022-07-16 thomas #index_next a:hover {
470 8a35f56c 2022-07-16 thomas color: SteelBlue;
471 8a35f56c 2022-07-16 thomas text-decoration: none;
472 8a35f56c 2022-07-16 thomas }
473 8a35f56c 2022-07-16 thomas #index_prev a {
474 8a35f56c 2022-07-16 thomas color: #444444;
475 8a35f56c 2022-07-16 thomas text-decoration: none;
476 8a35f56c 2022-07-16 thomas }
477 8a35f56c 2022-07-16 thomas #index_prev a:hover {
478 8a35f56c 2022-07-16 thomas color: SteelBlue;
479 8a35f56c 2022-07-16 thomas text-decoration: none;
480 8a35f56c 2022-07-16 thomas }
481 8a35f56c 2022-07-16 thomas
482 9e0c279a 2022-08-10 thomas .commits_title_wrapper {
483 8a35f56c 2022-07-16 thomas clear: left;
484 8a35f56c 2022-07-16 thomas float: left;
485 8a35f56c 2022-07-16 thomas width: 100%;
486 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
487 8a35f56c 2022-07-16 thomas color: #ffffff;
488 8a35f56c 2022-07-16 thomas }
489 9e0c279a 2022-08-10 thomas .commits_title {
490 8a35f56c 2022-07-16 thomas padding-left: 10px;
491 8a35f56c 2022-07-16 thomas padding-top: 5px;
492 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
493 8a35f56c 2022-07-16 thomas }
494 9e0c279a 2022-08-10 thomas .commits_content {
495 8a35f56c 2022-07-16 thomas clear: left;
496 8a35f56c 2022-07-16 thomas float: left;
497 8a35f56c 2022-07-16 thomas width: 100%;
498 8a35f56c 2022-07-16 thomas }
499 9e0c279a 2022-08-10 thomas .commits_header_wrapper {
500 8a35f56c 2022-07-16 thomas float: left;
501 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
502 8a35f56c 2022-07-16 thomas width: 100%;
503 8a35f56c 2022-07-16 thomas }
504 9e0c279a 2022-08-10 thomas .commits_header {
505 8a35f56c 2022-07-16 thomas float: left;
506 8a35f56c 2022-07-16 thomas padding-top: 5px;
507 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
508 8a35f56c 2022-07-16 thomas width: 80%;
509 8a35f56c 2022-07-16 thomas }
510 9e0c279a 2022-08-10 thomas .commit {
511 8a35f56c 2022-07-16 thomas clear: left;
512 8a35f56c 2022-07-16 thomas float: left;
513 8a35f56c 2022-07-16 thomas padding-left: 20px;
514 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
515 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
516 8a35f56c 2022-07-16 thomas }
517 8a35f56c 2022-07-16 thomas
518 b82440e1 2023-01-06 thomas #blame_title_wrapper, #blob_title_wrapper {
519 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
520 8a35f56c 2022-07-16 thomas color: #ffffff;
521 8a35f56c 2022-07-16 thomas }
522 b82440e1 2023-01-06 thomas #blame_title, #blob_title_wrapper {
523 8a35f56c 2022-07-16 thomas padding-left: 10px;
524 8a35f56c 2022-07-16 thomas padding-top: 5px;
525 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
526 8a35f56c 2022-07-16 thomas }
527 b82440e1 2023-01-06 thomas #blame_content, #blob_content {
528 8a35f56c 2022-07-16 thomas clear: left;
529 8a35f56c 2022-07-16 thomas float: left;
530 8a35f56c 2022-07-16 thomas width: 100%;
531 8a35f56c 2022-07-16 thomas }
532 b82440e1 2023-01-06 thomas #blame_header_wrapper, #blob_header_wrapper {
533 8a35f56c 2022-07-16 thomas float: left;
534 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
535 8a35f56c 2022-07-16 thomas width: 100%;
536 8a35f56c 2022-07-16 thomas }
537 b82440e1 2023-01-06 thomas #blame_header, #blob_header {
538 8a35f56c 2022-07-16 thomas float: left;
539 8a35f56c 2022-07-16 thomas padding-left: 10px;
540 8a35f56c 2022-07-16 thomas padding-top: 5px;
541 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
542 8a35f56c 2022-07-16 thomas width: 80%;
543 8a35f56c 2022-07-16 thomas }
544 b82440e1 2023-01-06 thomas #blame, #blob {
545 8a35f56c 2022-07-16 thomas clear: left;
546 8a35f56c 2022-07-16 thomas float: left;
547 8a35f56c 2022-07-16 thomas margin-left: 20px;
548 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
549 8a35f56c 2022-07-16 thomas font-family: monospace;
550 8a35f56c 2022-07-16 thomas white-space: pre;
551 8a35f56c 2022-07-16 thomas overflow: auto;
552 8a35f56c 2022-07-16 thomas }
553 b82440e1 2023-01-06 thomas .blame_wrapper, .blob_line {
554 8a35f56c 2022-07-16 thomas clear: left;
555 8a35f56c 2022-07-16 thomas float: left;
556 8a35f56c 2022-07-16 thomas width: 100%;
557 8a35f56c 2022-07-16 thomas }
558 b82440e1 2023-01-06 thomas .blame_wrapper:target, .blob_line:target {
559 b82440e1 2023-01-06 thomas background-color: Khaki;
560 b82440e1 2023-01-06 thomas }
561 b82440e1 2023-01-06 thomas .blame_number, .blob_number {
562 8a35f56c 2022-07-16 thomas float: left;
563 8a35f56c 2022-07-16 thomas width: 6em;
564 8a35f56c 2022-07-16 thomas overflow: hidden;
565 8a35f56c 2022-07-16 thomas }
566 9e0c279a 2022-08-10 thomas .blame_hash {
567 8a35f56c 2022-07-16 thomas float: left;
568 8a35f56c 2022-07-16 thomas width: 6em;
569 8a35f56c 2022-07-16 thomas overflow: auto;
570 8a35f56c 2022-07-16 thomas }
571 9e0c279a 2022-08-10 thomas .blame_date {
572 8a35f56c 2022-07-16 thomas float: left;
573 8a35f56c 2022-07-16 thomas width: 7em;
574 8a35f56c 2022-07-16 thomas overflow: auto;
575 8a35f56c 2022-07-16 thomas }
576 9e0c279a 2022-08-10 thomas .blame_author {
577 8a35f56c 2022-07-16 thomas float: left;
578 8a35f56c 2022-07-16 thomas width: 6em;
579 8a35f56c 2022-07-16 thomas overflow: hidden;
580 8a35f56c 2022-07-16 thomas }
581 b82440e1 2023-01-06 thomas .blame_code, .blob_code {
582 8a35f56c 2022-07-16 thomas float:left;
583 8a35f56c 2022-07-16 thomas width: 50%;
584 8a35f56c 2022-07-16 thomas overflow: visible;
585 8a35f56c 2022-07-16 thomas }
586 8a35f56c 2022-07-16 thomas
587 8a35f56c 2022-07-16 thomas #tree_title_wrapper {
588 8a35f56c 2022-07-16 thomas clear: left;
589 8a35f56c 2022-07-16 thomas float: left;
590 8a35f56c 2022-07-16 thomas width: 100%;
591 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
592 8a35f56c 2022-07-16 thomas color: #ffffff;
593 8a35f56c 2022-07-16 thomas }
594 8a35f56c 2022-07-16 thomas #tree_title {
595 8a35f56c 2022-07-16 thomas padding-left: 10px;
596 8a35f56c 2022-07-16 thomas padding-top: 5px;
597 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
598 8a35f56c 2022-07-16 thomas }
599 8a35f56c 2022-07-16 thomas #tree_content {
600 8a35f56c 2022-07-16 thomas clear: left;
601 8a35f56c 2022-07-16 thomas float: left;
602 8a35f56c 2022-07-16 thomas width: 100%;
603 8a35f56c 2022-07-16 thomas }
604 8a35f56c 2022-07-16 thomas #tree_header_wrapper {
605 8a35f56c 2022-07-16 thomas clear: left;
606 8a35f56c 2022-07-16 thomas float: left;
607 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
608 8a35f56c 2022-07-16 thomas width: 100%;
609 8a35f56c 2022-07-16 thomas }
610 8a35f56c 2022-07-16 thomas #tree_header {
611 8a35f56c 2022-07-16 thomas float: left;
612 8a35f56c 2022-07-16 thomas padding-left: 10px;
613 8a35f56c 2022-07-16 thomas padding-top: 5px;
614 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
615 8a35f56c 2022-07-16 thomas width: 80%;
616 8a35f56c 2022-07-16 thomas }
617 8a35f56c 2022-07-16 thomas #tree {
618 8a35f56c 2022-07-16 thomas clear: left;
619 8a35f56c 2022-07-16 thomas float: left;
620 8a35f56c 2022-07-16 thomas margin-left: 20px;
621 8a35f56c 2022-07-16 thomas margin-top: 20px;
622 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
623 8a35f56c 2022-07-16 thomas font-family: monospace;
624 8a35f56c 2022-07-16 thomas }
625 9e0c279a 2022-08-10 thomas .tree_wrapper {
626 8a35f56c 2022-07-16 thomas clear: left;
627 8a35f56c 2022-07-16 thomas float: left;
628 8a35f56c 2022-07-16 thomas width: 100%;
629 56935ae7 2022-08-10 thomas background-color: #d8f3ef;
630 8a35f56c 2022-07-16 thomas }
631 56935ae7 2022-08-10 thomas .tree_wrapper:nth-child(even) {
632 56935ae7 2022-08-10 thomas background-color: #ffffff;
633 56935ae7 2022-08-10 thomas }
634 9e0c279a 2022-08-10 thomas .tree_line {
635 8a35f56c 2022-07-16 thomas clear: left;
636 8a35f56c 2022-07-16 thomas float: left;
637 8a35f56c 2022-07-16 thomas width: 20em;
638 8a35f56c 2022-07-16 thomas padding: 1px;
639 8a35f56c 2022-07-16 thomas }
640 9e0c279a 2022-08-10 thomas .tree_line_blank {
641 8a35f56c 2022-07-16 thomas float: left;
642 8a35f56c 2022-07-16 thomas padding: 1px;
643 8a35f56c 2022-07-16 thomas width: 9.5em;
644 8a35f56c 2022-07-16 thomas }
645 8a35f56c 2022-07-16 thomas
646 8a35f56c 2022-07-16 thomas #diff_title_wrapper {
647 8a35f56c 2022-07-16 thomas clear: left;
648 8a35f56c 2022-07-16 thomas float: left;
649 8a35f56c 2022-07-16 thomas width: 100%;
650 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
651 8a35f56c 2022-07-16 thomas color: #ffffff;
652 8a35f56c 2022-07-16 thomas }
653 8a35f56c 2022-07-16 thomas #diff_title {
654 8a35f56c 2022-07-16 thomas padding-left: 10px;
655 8a35f56c 2022-07-16 thomas padding-top: 5px;
656 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
657 8a35f56c 2022-07-16 thomas }
658 8a35f56c 2022-07-16 thomas #diff_content {
659 8a35f56c 2022-07-16 thomas clear: left;
660 8a35f56c 2022-07-16 thomas float: left;
661 8a35f56c 2022-07-16 thomas width: 100%;
662 8a35f56c 2022-07-16 thomas }
663 8a35f56c 2022-07-16 thomas #diff_header_wrapper {
664 8a35f56c 2022-07-16 thomas float: left;
665 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
666 8a35f56c 2022-07-16 thomas width: 100%;
667 8a35f56c 2022-07-16 thomas }
668 8a35f56c 2022-07-16 thomas #diff_header {
669 8a35f56c 2022-07-16 thomas float: left;
670 8a35f56c 2022-07-16 thomas padding-left: 10px;
671 8a35f56c 2022-07-16 thomas padding-top: 5px;
672 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
673 8a35f56c 2022-07-16 thomas width: 80%;
674 8a35f56c 2022-07-16 thomas }
675 8a35f56c 2022-07-16 thomas #diff {
676 8a35f56c 2022-07-16 thomas clear: left;
677 8a35f56c 2022-07-16 thomas float: left;
678 8a35f56c 2022-07-16 thomas margin-left: 20px;
679 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
680 8a35f56c 2022-07-16 thomas font-family: monospace;
681 8a35f56c 2022-07-16 thomas white-space: pre;
682 8a35f56c 2022-07-16 thomas }
683 9e0c279a 2022-08-10 thomas .diff_line {
684 8a35f56c 2022-07-16 thomas clear: left;
685 8a35f56c 2022-07-16 thomas float: left;
686 8a35f56c 2022-07-16 thomas }
687 8a35f56c 2022-07-16 thomas
688 8a35f56c 2022-07-16 thomas #summary_wrapper {
689 8a35f56c 2022-07-16 thomas clear: left;
690 8a35f56c 2022-07-16 thomas float: left;
691 8a35f56c 2022-07-16 thomas width: 100%;
692 8a35f56c 2022-07-16 thomas background-color: Khaki;
693 8a35f56c 2022-07-16 thomas }
694 8a35f56c 2022-07-16 thomas
695 8a35f56c 2022-07-16 thomas #branches_title_wrapper {
696 8a35f56c 2022-07-16 thomas clear: left;
697 8a35f56c 2022-07-16 thomas float: left;
698 8a35f56c 2022-07-16 thomas width: 100%;
699 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
700 8a35f56c 2022-07-16 thomas color: #ffffff;
701 8a35f56c 2022-07-16 thomas }
702 8a35f56c 2022-07-16 thomas #branches_title {
703 8a35f56c 2022-07-16 thomas padding-left: 10px;
704 8a35f56c 2022-07-16 thomas padding-top: 5px;
705 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
706 8a35f56c 2022-07-16 thomas }
707 8a35f56c 2022-07-16 thomas #branches_content {
708 8a35f56c 2022-07-16 thomas clear: left;
709 8a35f56c 2022-07-16 thomas float: left;
710 8a35f56c 2022-07-16 thomas width: 100%;
711 8a35f56c 2022-07-16 thomas }
712 8a35f56c 2022-07-16 thomas
713 9e0c279a 2022-08-10 thomas .branches_wrapper {
714 8a35f56c 2022-07-16 thomas clear: left;
715 8a35f56c 2022-07-16 thomas float: left;
716 8a35f56c 2022-07-16 thomas width: 100%;
717 8a35f56c 2022-07-16 thomas }
718 9e0c279a 2022-08-10 thomas .branches_age {
719 8a35f56c 2022-07-16 thomas padding-left: 10px;
720 8a35f56c 2022-07-16 thomas padding-top: 5px;
721 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
722 8a35f56c 2022-07-16 thomas float: left;
723 8a35f56c 2022-07-16 thomas width: 7.5em;
724 8a35f56c 2022-07-16 thomas overflow: auto;
725 8a35f56c 2022-07-16 thomas }
726 9e0c279a 2022-08-10 thomas .branches_space {
727 8a35f56c 2022-07-16 thomas padding-left: 10px;
728 8a35f56c 2022-07-16 thomas padding-top: 5px;
729 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
730 8a35f56c 2022-07-16 thomas float: left;
731 8a35f56c 2022-07-16 thomas width: 8.5em;
732 8a35f56c 2022-07-16 thomas overflow: auto;
733 8a35f56c 2022-07-16 thomas }
734 9e0c279a 2022-08-10 thomas .branch {
735 8a35f56c 2022-07-16 thomas float: left;
736 8a35f56c 2022-07-16 thomas padding-right: 10px;
737 8a35f56c 2022-07-16 thomas padding-top: 5px;
738 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
739 8a35f56c 2022-07-16 thomas }