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 8a35f56c 2022-07-16 thomas }
110 8a35f56c 2022-07-16 thomas #np_wrapper {
111 8a35f56c 2022-07-16 thomas clear: left;
112 8a35f56c 2022-07-16 thomas float: left;
113 8a35f56c 2022-07-16 thomas width: 100%;
114 8a35f56c 2022-07-16 thomas border-bottom: 1px dotted #444444;
115 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
116 8a35f56c 2022-07-16 thomas overflow: hidden;
117 8a35f56c 2022-07-16 thomas }
118 8a35f56c 2022-07-16 thomas #nav_prev {
119 8a35f56c 2022-07-16 thomas float: left;
120 8a35f56c 2022-07-16 thomas padding-left: 10px;
121 8a35f56c 2022-07-16 thomas padding-top: 5px;
122 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
123 8a35f56c 2022-07-16 thomas overflow: visible;
124 8a35f56c 2022-07-16 thomas }
125 8a35f56c 2022-07-16 thomas #nav_next {
126 8a35f56c 2022-07-16 thomas padding-right: 10px;
127 8a35f56c 2022-07-16 thomas padding-top: 5px;
128 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
129 8a35f56c 2022-07-16 thomas text-align: right;
130 8a35f56c 2022-07-16 thomas overflow: hidden;
131 8a35f56c 2022-07-16 thomas }
132 9e0c279a 2022-08-10 thomas .navs_wrapper {
133 8a35f56c 2022-07-16 thomas clear: left;
134 8a35f56c 2022-07-16 thomas float: left;
135 8a35f56c 2022-07-16 thomas width: 100%;
136 8a35f56c 2022-07-16 thomas background-color: #ced7e0;
137 8a35f56c 2022-07-16 thomas }
138 9e0c279a 2022-08-10 thomas .navs {
139 8a35f56c 2022-07-16 thomas padding-left: 10px;
140 8a35f56c 2022-07-16 thomas padding-top: 2px;
141 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
142 8a35f56c 2022-07-16 thomas font-size: .8em;
143 8a35f56c 2022-07-16 thomas }
144 8a35f56c 2022-07-16 thomas #site_owner_wrapper {
145 8a35f56c 2022-07-16 thomas clear: left;
146 8a35f56c 2022-07-16 thomas float: left;
147 8a35f56c 2022-07-16 thomas width: 100%;
148 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
149 8a35f56c 2022-07-16 thomas color: #ffffff;
150 8a35f56c 2022-07-16 thomas }
151 8a35f56c 2022-07-16 thomas #site_owner {
152 8a35f56c 2022-07-16 thomas padding-left: 10px;
153 8a35f56c 2022-07-16 thomas padding-top: 5px;
154 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
155 8a35f56c 2022-07-16 thomas }
156 8a35f56c 2022-07-16 thomas #description_title {
157 8a35f56c 2022-07-16 thomas clear: left;
158 8a35f56c 2022-07-16 thomas float: left;
159 8a35f56c 2022-07-16 thomas width: 6.5em;
160 8a35f56c 2022-07-16 thomas padding-left: 10px;
161 8a35f56c 2022-07-16 thomas padding-top: 5px;
162 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
163 8a35f56c 2022-07-16 thomas }
164 8a35f56c 2022-07-16 thomas #description {
165 8a35f56c 2022-07-16 thomas float: left;
166 8a35f56c 2022-07-16 thomas width: 72%;
167 8a35f56c 2022-07-16 thomas padding-top: 5px;
168 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
169 8a35f56c 2022-07-16 thomas }
170 8a35f56c 2022-07-16 thomas #repo_owner_title {
171 8a35f56c 2022-07-16 thomas clear: left;
172 8a35f56c 2022-07-16 thomas float: left;
173 8a35f56c 2022-07-16 thomas width: 6.5em;
174 8a35f56c 2022-07-16 thomas padding-left: 10px;
175 8a35f56c 2022-07-16 thomas padding-top: 5px;
176 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
177 8a35f56c 2022-07-16 thomas }
178 8a35f56c 2022-07-16 thomas #repo_owner {
179 8a35f56c 2022-07-16 thomas float: left;
180 8a35f56c 2022-07-16 thomas width: 72%;
181 8a35f56c 2022-07-16 thomas padding-top: 5px;
182 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
183 8a35f56c 2022-07-16 thomas }
184 8a35f56c 2022-07-16 thomas #last_change_title {
185 8a35f56c 2022-07-16 thomas clear: left;
186 8a35f56c 2022-07-16 thomas float: left;
187 8a35f56c 2022-07-16 thomas width: 6.5em;
188 8a35f56c 2022-07-16 thomas padding-left: 10px;
189 8a35f56c 2022-07-16 thomas padding-top: 5px;
190 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
191 8a35f56c 2022-07-16 thomas }
192 8a35f56c 2022-07-16 thomas #last_change {
193 8a35f56c 2022-07-16 thomas float: left;
194 8a35f56c 2022-07-16 thomas width: 72%;
195 8a35f56c 2022-07-16 thomas padding-top: 5px;
196 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
197 8a35f56c 2022-07-16 thomas }
198 8a35f56c 2022-07-16 thomas #cloneurl_title {
199 8a35f56c 2022-07-16 thomas clear: left;
200 8a35f56c 2022-07-16 thomas float: left;
201 8a35f56c 2022-07-16 thomas width: 6.5em;
202 8a35f56c 2022-07-16 thomas padding-left: 10px;
203 8a35f56c 2022-07-16 thomas padding-top: 5px;
204 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
205 8a35f56c 2022-07-16 thomas }
206 8a35f56c 2022-07-16 thomas #cloneurl {
207 8a35f56c 2022-07-16 thomas float: left;
208 8a35f56c 2022-07-16 thomas width: 72%;
209 8a35f56c 2022-07-16 thomas padding-top: 5px;
210 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
211 8a35f56c 2022-07-16 thomas overflow: auto;
212 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
213 8a35f56c 2022-07-16 thomas }
214 8a35f56c 2022-07-16 thomas
215 9e0c279a 2022-08-10 thomas .header_commit_title {
216 8a35f56c 2022-07-16 thomas clear: left;
217 8a35f56c 2022-07-16 thomas float: left;
218 8a35f56c 2022-07-16 thomas width: 6.5em;
219 8a35f56c 2022-07-16 thomas padding-left: 10px;
220 8a35f56c 2022-07-16 thomas padding-top: 2px;
221 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
222 8a35f56c 2022-07-16 thomas }
223 9e0c279a 2022-08-10 thomas .header_commit {
224 8a35f56c 2022-07-16 thomas float: left;
225 8a35f56c 2022-07-16 thomas width: 72%;
226 8a35f56c 2022-07-16 thomas padding-top: 2px;
227 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
228 8a35f56c 2022-07-16 thomas }
229 8a35f56c 2022-07-16 thomas #header_diff_title {
230 8a35f56c 2022-07-16 thomas clear: left;
231 8a35f56c 2022-07-16 thomas float: left;
232 8a35f56c 2022-07-16 thomas width: 6.5em;
233 8a35f56c 2022-07-16 thomas padding-left: 10px;
234 8a35f56c 2022-07-16 thomas padding-top: 2px;
235 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
236 8a35f56c 2022-07-16 thomas }
237 8a35f56c 2022-07-16 thomas #header_diff {
238 8a35f56c 2022-07-16 thomas float: left;
239 8a35f56c 2022-07-16 thomas width: 72%;
240 8a35f56c 2022-07-16 thomas padding-top: 2px;
241 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
242 8a35f56c 2022-07-16 thomas }
243 9e0c279a 2022-08-10 thomas .header_author_title {
244 8a35f56c 2022-07-16 thomas clear: left;
245 8a35f56c 2022-07-16 thomas float: left;
246 8a35f56c 2022-07-16 thomas width: 6.5em;
247 8a35f56c 2022-07-16 thomas padding-left: 10px;
248 8a35f56c 2022-07-16 thomas padding-top: 2px;
249 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
250 8a35f56c 2022-07-16 thomas }
251 9e0c279a 2022-08-10 thomas .header_author {
252 8a35f56c 2022-07-16 thomas float: left;
253 8a35f56c 2022-07-16 thomas width: 72%;
254 8a35f56c 2022-07-16 thomas padding-top: 2px;
255 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
256 8a35f56c 2022-07-16 thomas }
257 9e0c279a 2022-08-10 thomas .header_age_title {
258 8a35f56c 2022-07-16 thomas clear: left;
259 8a35f56c 2022-07-16 thomas float: left;
260 8a35f56c 2022-07-16 thomas width: 6.5em;
261 8a35f56c 2022-07-16 thomas padding-left: 10px;
262 8a35f56c 2022-07-16 thomas padding-top: 2px;
263 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
264 8a35f56c 2022-07-16 thomas }
265 9e0c279a 2022-08-10 thomas .header_age {
266 8a35f56c 2022-07-16 thomas float: left;
267 8a35f56c 2022-07-16 thomas width: 72%;
268 8a35f56c 2022-07-16 thomas padding-top: 2px;
269 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
270 8a35f56c 2022-07-16 thomas }
271 8a35f56c 2022-07-16 thomas #header_commit_msg_title {
272 8a35f56c 2022-07-16 thomas clear: left;
273 8a35f56c 2022-07-16 thomas float: left;
274 8a35f56c 2022-07-16 thomas width: 6.5em;
275 8a35f56c 2022-07-16 thomas padding-left: 10px;
276 8a35f56c 2022-07-16 thomas padding-top: 2px;
277 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
278 8a35f56c 2022-07-16 thomas }
279 8a35f56c 2022-07-16 thomas #header_commit_msg {
280 8a35f56c 2022-07-16 thomas float: left;
281 8a35f56c 2022-07-16 thomas width: 72%;
282 8a35f56c 2022-07-16 thomas padding-top: 2px;
283 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
284 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
285 8a35f56c 2022-07-16 thomas }
286 8a35f56c 2022-07-16 thomas #header_tree_title {
287 8a35f56c 2022-07-16 thomas clear: left;
288 8a35f56c 2022-07-16 thomas float: left;
289 8a35f56c 2022-07-16 thomas width: 6.5em;
290 8a35f56c 2022-07-16 thomas padding-left: 10px;
291 8a35f56c 2022-07-16 thomas padding-top: 2px;
292 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
293 8a35f56c 2022-07-16 thomas }
294 8a35f56c 2022-07-16 thomas #header_tree {
295 8a35f56c 2022-07-16 thomas float: left;
296 8a35f56c 2022-07-16 thomas width: 72%;
297 8a35f56c 2022-07-16 thomas padding-top: 2px;
298 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
299 8a35f56c 2022-07-16 thomas }
300 8a35f56c 2022-07-16 thomas
301 8a35f56c 2022-07-16 thomas #err_content {
302 8a35f56c 2022-07-16 thomas clear: left;
303 8a35f56c 2022-07-16 thomas float: left;
304 8a35f56c 2022-07-16 thomas width: 100%;
305 8a35f56c 2022-07-16 thomas padding-left: 20px;
306 8a35f56c 2022-07-16 thomas padding-top: 20px;
307 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
308 8a35f56c 2022-07-16 thomas }
309 8a35f56c 2022-07-16 thomas
310 8a35f56c 2022-07-16 thomas #briefs_title_wrapper {
311 8a35f56c 2022-07-16 thomas clear: left;
312 8a35f56c 2022-07-16 thomas float: left;
313 8a35f56c 2022-07-16 thomas width: 100%;
314 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
315 8a35f56c 2022-07-16 thomas color: #ffffff;
316 8a35f56c 2022-07-16 thomas }
317 8a35f56c 2022-07-16 thomas #briefs_title {
318 8a35f56c 2022-07-16 thomas padding-left: 10px;
319 8a35f56c 2022-07-16 thomas padding-top: 5px;
320 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
321 8a35f56c 2022-07-16 thomas }
322 8a35f56c 2022-07-16 thomas #briefs_content {
323 8a35f56c 2022-07-16 thomas clear: left;
324 8a35f56c 2022-07-16 thomas float: left;
325 8a35f56c 2022-07-16 thomas width: 100%;
326 8a35f56c 2022-07-16 thomas }
327 9e0c279a 2022-08-10 thomas .briefs_age {
328 8a35f56c 2022-07-16 thomas padding-left: 10px;
329 8a35f56c 2022-07-16 thomas padding-top: 5px;
330 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
331 8a35f56c 2022-07-16 thomas float: left;
332 8a35f56c 2022-07-16 thomas width: 7.5em;
333 8a35f56c 2022-07-16 thomas overflow: auto;
334 8a35f56c 2022-07-16 thomas }
335 9e0c279a 2022-08-10 thomas .briefs_author {
336 8a35f56c 2022-07-16 thomas float: left;
337 8a35f56c 2022-07-16 thomas padding-top: 5px;
338 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
339 8a35f56c 2022-07-16 thomas width: 8.5em;
340 8a35f56c 2022-07-16 thomas font-style: italic;
341 8a35f56c 2022-07-16 thomas overflow: auto;
342 8a35f56c 2022-07-16 thomas }
343 9e0c279a 2022-08-10 thomas .briefs_log {
344 8a35f56c 2022-07-16 thomas float: left;
345 8a35f56c 2022-07-16 thomas padding-left: 10px;
346 8a35f56c 2022-07-16 thomas padding-right: 10px;
347 8a35f56c 2022-07-16 thomas padding-top: 5px;
348 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
349 8a35f56c 2022-07-16 thomas width: 65%;
350 8a35f56c 2022-07-16 thomas }
351 8a35f56c 2022-07-16 thomas
352 8a35f56c 2022-07-16 thomas #tags_title_wrapper {
353 8a35f56c 2022-07-16 thomas clear: left;
354 8a35f56c 2022-07-16 thomas float: left;
355 8a35f56c 2022-07-16 thomas width: 100%;
356 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
357 8a35f56c 2022-07-16 thomas color: #ffffff;
358 8a35f56c 2022-07-16 thomas }
359 8a35f56c 2022-07-16 thomas #tags_title {
360 8a35f56c 2022-07-16 thomas padding-left: 10px;
361 8a35f56c 2022-07-16 thomas padding-top: 5px;
362 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
363 8a35f56c 2022-07-16 thomas }
364 8a35f56c 2022-07-16 thomas #tags_content {
365 8a35f56c 2022-07-16 thomas clear: left;
366 8a35f56c 2022-07-16 thomas float: left;
367 8a35f56c 2022-07-16 thomas width: 100%;
368 8a35f56c 2022-07-16 thomas }
369 9e0c279a 2022-08-10 thomas .tag_age {
370 8a35f56c 2022-07-16 thomas padding-left: 10px;
371 8a35f56c 2022-07-16 thomas padding-top: 5px;
372 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
373 8a35f56c 2022-07-16 thomas float: left;
374 8a35f56c 2022-07-16 thomas width: 7.5em;
375 8a35f56c 2022-07-16 thomas overflow: auto;
376 8a35f56c 2022-07-16 thomas }
377 9e0c279a 2022-08-10 thomas .tag_log {
378 8a35f56c 2022-07-16 thomas float: left;
379 8a35f56c 2022-07-16 thomas padding-left: 10px;
380 8a35f56c 2022-07-16 thomas padding-right: 10px;
381 8a35f56c 2022-07-16 thomas padding-top: 5px;
382 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
383 8a35f56c 2022-07-16 thomas width: 65%;
384 8a35f56c 2022-07-16 thomas }
385 8a35f56c 2022-07-16 thomas
386 8a35f56c 2022-07-16 thomas #tag_header_wrapper {
387 8a35f56c 2022-07-16 thomas clear: left;
388 8a35f56c 2022-07-16 thomas float: left;
389 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
390 8a35f56c 2022-07-16 thomas width: 100%;
391 8a35f56c 2022-07-16 thomas }
392 8a35f56c 2022-07-16 thomas #tag_header {
393 8a35f56c 2022-07-16 thomas float: left;
394 8a35f56c 2022-07-16 thomas padding-left: 10px;
395 8a35f56c 2022-07-16 thomas padding-top: 5px;
396 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
397 8a35f56c 2022-07-16 thomas width: 80%;
398 8a35f56c 2022-07-16 thomas }
399 9e0c279a 2022-08-10 thomas .tag {
400 8a35f56c 2022-07-16 thomas float: left;
401 8a35f56c 2022-07-16 thomas width: 8.5em;
402 8a35f56c 2022-07-16 thomas font-style: italic;
403 8a35f56c 2022-07-16 thomas padding-top: 5px;
404 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
405 8a35f56c 2022-07-16 thomas }
406 8a35f56c 2022-07-16 thomas #tag_commit {
407 8a35f56c 2022-07-16 thomas clear: left;
408 8a35f56c 2022-07-16 thomas float: left;
409 8a35f56c 2022-07-16 thomas padding-left: 20px;
410 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
411 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
412 8a35f56c 2022-07-16 thomas }
413 8a35f56c 2022-07-16 thomas
414 8a35f56c 2022-07-16 thomas #index_header {
415 8a35f56c 2022-07-16 thomas clear: left;
416 8a35f56c 2022-07-16 thomas float: left;
417 8a35f56c 2022-07-16 thomas overflow: auto;
418 8a35f56c 2022-07-16 thomas width: 100%;
419 8a35f56c 2022-07-16 thomas background-color: Khaki;
420 8a35f56c 2022-07-16 thomas }
421 8a35f56c 2022-07-16 thomas #index_header_project {
422 8a35f56c 2022-07-16 thomas clear: left;
423 8a35f56c 2022-07-16 thomas float: left;
424 8a35f56c 2022-07-16 thomas width: 20%;
425 8a35f56c 2022-07-16 thomas padding: 10px;
426 8a35f56c 2022-07-16 thomas }
427 8a35f56c 2022-07-16 thomas #index_header_description {
428 8a35f56c 2022-07-16 thomas float: left;
429 8a35f56c 2022-07-16 thomas width: 30%;
430 8a35f56c 2022-07-16 thomas padding: 10px;
431 8a35f56c 2022-07-16 thomas }
432 8a35f56c 2022-07-16 thomas #index_header_owner {
433 8a35f56c 2022-07-16 thomas float: left;
434 8a35f56c 2022-07-16 thomas width: 12%;
435 8a35f56c 2022-07-16 thomas padding: 10px;
436 8a35f56c 2022-07-16 thomas }
437 8a35f56c 2022-07-16 thomas #index_header_age {
438 8a35f56c 2022-07-16 thomas padding: 10px;
439 8a35f56c 2022-07-16 thomas overflow: hidden;
440 8a35f56c 2022-07-16 thomas }
441 9e0c279a 2022-08-10 thomas .index_wrapper {
442 8a35f56c 2022-07-16 thomas clear: left;
443 8a35f56c 2022-07-16 thomas float: left;
444 8a35f56c 2022-07-16 thomas width: 100%;
445 8a35f56c 2022-07-16 thomas }
446 9e0c279a 2022-08-10 thomas .index_project {
447 8a35f56c 2022-07-16 thomas float: left;
448 8a35f56c 2022-07-16 thomas width: 20%;
449 8a35f56c 2022-07-16 thomas padding: 10px;
450 8a35f56c 2022-07-16 thomas overflow: hidden;
451 8a35f56c 2022-07-16 thomas }
452 9e0c279a 2022-08-10 thomas .index_project_description {
453 8a35f56c 2022-07-16 thomas float: left;
454 8a35f56c 2022-07-16 thomas width: 30%;
455 8a35f56c 2022-07-16 thomas padding: 10px;
456 8a35f56c 2022-07-16 thomas overflow: auto;
457 8a35f56c 2022-07-16 thomas }
458 9e0c279a 2022-08-10 thomas .index_project_owner {
459 8a35f56c 2022-07-16 thomas float: left;
460 8a35f56c 2022-07-16 thomas width: 12%;
461 8a35f56c 2022-07-16 thomas padding: 10px;
462 8a35f56c 2022-07-16 thomas overflow: hidden;
463 8a35f56c 2022-07-16 thomas }
464 9e0c279a 2022-08-10 thomas .index_project_age {
465 8a35f56c 2022-07-16 thomas float: left;
466 8a35f56c 2022-07-16 thomas width: 14%;
467 8a35f56c 2022-07-16 thomas padding: 10px;
468 8a35f56c 2022-07-16 thomas overflow: visible;
469 8a35f56c 2022-07-16 thomas }
470 9e0c279a 2022-08-10 thomas .index_project a {
471 8a35f56c 2022-07-16 thomas color: #444444;
472 8a35f56c 2022-07-16 thomas text-decoration: none;
473 8a35f56c 2022-07-16 thomas }
474 9e0c279a 2022-08-10 thomas .index_project a:hover {
475 8a35f56c 2022-07-16 thomas color: SteelBlue;
476 8a35f56c 2022-07-16 thomas text-decoration: none;
477 8a35f56c 2022-07-16 thomas }
478 8a35f56c 2022-07-16 thomas #index_next a {
479 8a35f56c 2022-07-16 thomas color: #444444;
480 8a35f56c 2022-07-16 thomas text-decoration: none;
481 8a35f56c 2022-07-16 thomas }
482 8a35f56c 2022-07-16 thomas #index_next a:hover {
483 8a35f56c 2022-07-16 thomas color: SteelBlue;
484 8a35f56c 2022-07-16 thomas text-decoration: none;
485 8a35f56c 2022-07-16 thomas }
486 8a35f56c 2022-07-16 thomas #index_prev a {
487 8a35f56c 2022-07-16 thomas color: #444444;
488 8a35f56c 2022-07-16 thomas text-decoration: none;
489 8a35f56c 2022-07-16 thomas }
490 8a35f56c 2022-07-16 thomas #index_prev a:hover {
491 8a35f56c 2022-07-16 thomas color: SteelBlue;
492 8a35f56c 2022-07-16 thomas text-decoration: none;
493 8a35f56c 2022-07-16 thomas }
494 8a35f56c 2022-07-16 thomas
495 9e0c279a 2022-08-10 thomas .commits_title_wrapper {
496 8a35f56c 2022-07-16 thomas clear: left;
497 8a35f56c 2022-07-16 thomas float: left;
498 8a35f56c 2022-07-16 thomas width: 100%;
499 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
500 8a35f56c 2022-07-16 thomas color: #ffffff;
501 8a35f56c 2022-07-16 thomas }
502 9e0c279a 2022-08-10 thomas .commits_title {
503 8a35f56c 2022-07-16 thomas padding-left: 10px;
504 8a35f56c 2022-07-16 thomas padding-top: 5px;
505 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
506 8a35f56c 2022-07-16 thomas }
507 9e0c279a 2022-08-10 thomas .commits_content {
508 8a35f56c 2022-07-16 thomas clear: left;
509 8a35f56c 2022-07-16 thomas float: left;
510 8a35f56c 2022-07-16 thomas width: 100%;
511 8a35f56c 2022-07-16 thomas }
512 9e0c279a 2022-08-10 thomas .commits_header_wrapper {
513 8a35f56c 2022-07-16 thomas float: left;
514 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
515 8a35f56c 2022-07-16 thomas width: 100%;
516 8a35f56c 2022-07-16 thomas }
517 9e0c279a 2022-08-10 thomas .commits_header {
518 8a35f56c 2022-07-16 thomas float: left;
519 8a35f56c 2022-07-16 thomas padding-top: 5px;
520 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
521 8a35f56c 2022-07-16 thomas width: 80%;
522 8a35f56c 2022-07-16 thomas }
523 9e0c279a 2022-08-10 thomas .commit {
524 8a35f56c 2022-07-16 thomas clear: left;
525 8a35f56c 2022-07-16 thomas float: left;
526 8a35f56c 2022-07-16 thomas padding-left: 20px;
527 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
528 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
529 8a35f56c 2022-07-16 thomas }
530 8a35f56c 2022-07-16 thomas
531 8a35f56c 2022-07-16 thomas #blame_title_wrapper {
532 8a35f56c 2022-07-16 thomas clear: left;
533 8a35f56c 2022-07-16 thomas float: left;
534 8a35f56c 2022-07-16 thomas width: 100%;
535 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
536 8a35f56c 2022-07-16 thomas color: #ffffff;
537 8a35f56c 2022-07-16 thomas }
538 8a35f56c 2022-07-16 thomas #blame_title {
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: 5px;
542 8a35f56c 2022-07-16 thomas }
543 8a35f56c 2022-07-16 thomas #blame_content {
544 8a35f56c 2022-07-16 thomas clear: left;
545 8a35f56c 2022-07-16 thomas float: left;
546 8a35f56c 2022-07-16 thomas width: 100%;
547 8a35f56c 2022-07-16 thomas }
548 8a35f56c 2022-07-16 thomas #blame_header_wrapper {
549 8a35f56c 2022-07-16 thomas float: left;
550 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
551 8a35f56c 2022-07-16 thomas width: 100%;
552 8a35f56c 2022-07-16 thomas }
553 8a35f56c 2022-07-16 thomas #blame_header {
554 8a35f56c 2022-07-16 thomas float: left;
555 8a35f56c 2022-07-16 thomas padding-left: 10px;
556 8a35f56c 2022-07-16 thomas padding-top: 5px;
557 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
558 8a35f56c 2022-07-16 thomas width: 80%;
559 8a35f56c 2022-07-16 thomas }
560 8a35f56c 2022-07-16 thomas #blame {
561 8a35f56c 2022-07-16 thomas clear: left;
562 8a35f56c 2022-07-16 thomas float: left;
563 8a35f56c 2022-07-16 thomas margin-left: 20px;
564 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
565 8a35f56c 2022-07-16 thomas font-family: monospace;
566 8a35f56c 2022-07-16 thomas white-space: pre;
567 8a35f56c 2022-07-16 thomas overflow: auto;
568 8a35f56c 2022-07-16 thomas }
569 9e0c279a 2022-08-10 thomas .blame_wrapper {
570 8a35f56c 2022-07-16 thomas clear: left;
571 8a35f56c 2022-07-16 thomas float: left;
572 8a35f56c 2022-07-16 thomas width: 100%;
573 8a35f56c 2022-07-16 thomas }
574 9e0c279a 2022-08-10 thomas .blame_number {
575 8a35f56c 2022-07-16 thomas float: left;
576 8a35f56c 2022-07-16 thomas width: 6em;
577 8a35f56c 2022-07-16 thomas overflow: hidden;
578 8a35f56c 2022-07-16 thomas }
579 9e0c279a 2022-08-10 thomas .blame_hash {
580 8a35f56c 2022-07-16 thomas float: left;
581 8a35f56c 2022-07-16 thomas width: 6em;
582 8a35f56c 2022-07-16 thomas overflow: auto;
583 8a35f56c 2022-07-16 thomas }
584 9e0c279a 2022-08-10 thomas .blame_date {
585 8a35f56c 2022-07-16 thomas float: left;
586 8a35f56c 2022-07-16 thomas width: 7em;
587 8a35f56c 2022-07-16 thomas overflow: auto;
588 8a35f56c 2022-07-16 thomas }
589 9e0c279a 2022-08-10 thomas .blame_author {
590 8a35f56c 2022-07-16 thomas float: left;
591 8a35f56c 2022-07-16 thomas width: 6em;
592 8a35f56c 2022-07-16 thomas overflow: hidden;
593 8a35f56c 2022-07-16 thomas }
594 9e0c279a 2022-08-10 thomas .blame_code {
595 8a35f56c 2022-07-16 thomas float:left;
596 8a35f56c 2022-07-16 thomas width: 50%;
597 8a35f56c 2022-07-16 thomas overflow: visible;
598 8a35f56c 2022-07-16 thomas }
599 8a35f56c 2022-07-16 thomas
600 8a35f56c 2022-07-16 thomas #tree_title_wrapper {
601 8a35f56c 2022-07-16 thomas clear: left;
602 8a35f56c 2022-07-16 thomas float: left;
603 8a35f56c 2022-07-16 thomas width: 100%;
604 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
605 8a35f56c 2022-07-16 thomas color: #ffffff;
606 8a35f56c 2022-07-16 thomas }
607 8a35f56c 2022-07-16 thomas #tree_title {
608 8a35f56c 2022-07-16 thomas padding-left: 10px;
609 8a35f56c 2022-07-16 thomas padding-top: 5px;
610 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
611 8a35f56c 2022-07-16 thomas }
612 8a35f56c 2022-07-16 thomas #tree_content {
613 8a35f56c 2022-07-16 thomas clear: left;
614 8a35f56c 2022-07-16 thomas float: left;
615 8a35f56c 2022-07-16 thomas width: 100%;
616 8a35f56c 2022-07-16 thomas }
617 8a35f56c 2022-07-16 thomas #tree_header_wrapper {
618 8a35f56c 2022-07-16 thomas clear: left;
619 8a35f56c 2022-07-16 thomas float: left;
620 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
621 8a35f56c 2022-07-16 thomas width: 100%;
622 8a35f56c 2022-07-16 thomas }
623 8a35f56c 2022-07-16 thomas #tree_header {
624 8a35f56c 2022-07-16 thomas float: left;
625 8a35f56c 2022-07-16 thomas padding-left: 10px;
626 8a35f56c 2022-07-16 thomas padding-top: 5px;
627 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
628 8a35f56c 2022-07-16 thomas width: 80%;
629 8a35f56c 2022-07-16 thomas }
630 8a35f56c 2022-07-16 thomas #tree {
631 8a35f56c 2022-07-16 thomas clear: left;
632 8a35f56c 2022-07-16 thomas float: left;
633 8a35f56c 2022-07-16 thomas margin-left: 20px;
634 8a35f56c 2022-07-16 thomas margin-top: 20px;
635 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
636 8a35f56c 2022-07-16 thomas font-family: monospace;
637 8a35f56c 2022-07-16 thomas }
638 9e0c279a 2022-08-10 thomas .tree_wrapper {
639 8a35f56c 2022-07-16 thomas clear: left;
640 8a35f56c 2022-07-16 thomas float: left;
641 8a35f56c 2022-07-16 thomas width: 100%;
642 56935ae7 2022-08-10 thomas background-color: #d8f3ef;
643 8a35f56c 2022-07-16 thomas }
644 56935ae7 2022-08-10 thomas .tree_wrapper:nth-child(even) {
645 56935ae7 2022-08-10 thomas background-color: #ffffff;
646 56935ae7 2022-08-10 thomas }
647 9e0c279a 2022-08-10 thomas .tree_line {
648 8a35f56c 2022-07-16 thomas clear: left;
649 8a35f56c 2022-07-16 thomas float: left;
650 8a35f56c 2022-07-16 thomas width: 20em;
651 8a35f56c 2022-07-16 thomas padding: 1px;
652 8a35f56c 2022-07-16 thomas }
653 9e0c279a 2022-08-10 thomas .tree_line_blank {
654 8a35f56c 2022-07-16 thomas float: left;
655 8a35f56c 2022-07-16 thomas padding: 1px;
656 8a35f56c 2022-07-16 thomas width: 9.5em;
657 8a35f56c 2022-07-16 thomas }
658 8a35f56c 2022-07-16 thomas
659 8a35f56c 2022-07-16 thomas #diff_title_wrapper {
660 8a35f56c 2022-07-16 thomas clear: left;
661 8a35f56c 2022-07-16 thomas float: left;
662 8a35f56c 2022-07-16 thomas width: 100%;
663 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
664 8a35f56c 2022-07-16 thomas color: #ffffff;
665 8a35f56c 2022-07-16 thomas }
666 8a35f56c 2022-07-16 thomas #diff_title {
667 8a35f56c 2022-07-16 thomas padding-left: 10px;
668 8a35f56c 2022-07-16 thomas padding-top: 5px;
669 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
670 8a35f56c 2022-07-16 thomas }
671 8a35f56c 2022-07-16 thomas #diff_content {
672 8a35f56c 2022-07-16 thomas clear: left;
673 8a35f56c 2022-07-16 thomas float: left;
674 8a35f56c 2022-07-16 thomas width: 100%;
675 8a35f56c 2022-07-16 thomas }
676 8a35f56c 2022-07-16 thomas #diff_header_wrapper {
677 8a35f56c 2022-07-16 thomas float: left;
678 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
679 8a35f56c 2022-07-16 thomas width: 100%;
680 8a35f56c 2022-07-16 thomas }
681 8a35f56c 2022-07-16 thomas #diff_header {
682 8a35f56c 2022-07-16 thomas float: left;
683 8a35f56c 2022-07-16 thomas padding-left: 10px;
684 8a35f56c 2022-07-16 thomas padding-top: 5px;
685 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
686 8a35f56c 2022-07-16 thomas width: 80%;
687 8a35f56c 2022-07-16 thomas }
688 8a35f56c 2022-07-16 thomas #diff {
689 8a35f56c 2022-07-16 thomas clear: left;
690 8a35f56c 2022-07-16 thomas float: left;
691 8a35f56c 2022-07-16 thomas margin-left: 20px;
692 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
693 8a35f56c 2022-07-16 thomas font-family: monospace;
694 8a35f56c 2022-07-16 thomas white-space: pre;
695 8a35f56c 2022-07-16 thomas }
696 9e0c279a 2022-08-10 thomas .diff_line {
697 8a35f56c 2022-07-16 thomas clear: left;
698 8a35f56c 2022-07-16 thomas float: left;
699 8a35f56c 2022-07-16 thomas }
700 8a35f56c 2022-07-16 thomas
701 8a35f56c 2022-07-16 thomas #summary_wrapper {
702 8a35f56c 2022-07-16 thomas clear: left;
703 8a35f56c 2022-07-16 thomas float: left;
704 8a35f56c 2022-07-16 thomas width: 100%;
705 8a35f56c 2022-07-16 thomas background-color: Khaki;
706 8a35f56c 2022-07-16 thomas }
707 8a35f56c 2022-07-16 thomas
708 8a35f56c 2022-07-16 thomas #branches_title_wrapper {
709 8a35f56c 2022-07-16 thomas clear: left;
710 8a35f56c 2022-07-16 thomas float: left;
711 8a35f56c 2022-07-16 thomas width: 100%;
712 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
713 8a35f56c 2022-07-16 thomas color: #ffffff;
714 8a35f56c 2022-07-16 thomas }
715 8a35f56c 2022-07-16 thomas #branches_title {
716 8a35f56c 2022-07-16 thomas padding-left: 10px;
717 8a35f56c 2022-07-16 thomas padding-top: 5px;
718 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
719 8a35f56c 2022-07-16 thomas }
720 8a35f56c 2022-07-16 thomas #branches_content {
721 8a35f56c 2022-07-16 thomas clear: left;
722 8a35f56c 2022-07-16 thomas float: left;
723 8a35f56c 2022-07-16 thomas width: 100%;
724 8a35f56c 2022-07-16 thomas }
725 8a35f56c 2022-07-16 thomas
726 9e0c279a 2022-08-10 thomas .branches_wrapper {
727 8a35f56c 2022-07-16 thomas clear: left;
728 8a35f56c 2022-07-16 thomas float: left;
729 8a35f56c 2022-07-16 thomas width: 100%;
730 8a35f56c 2022-07-16 thomas }
731 9e0c279a 2022-08-10 thomas .branches_age {
732 8a35f56c 2022-07-16 thomas padding-left: 10px;
733 8a35f56c 2022-07-16 thomas padding-top: 5px;
734 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
735 8a35f56c 2022-07-16 thomas float: left;
736 8a35f56c 2022-07-16 thomas width: 7.5em;
737 8a35f56c 2022-07-16 thomas overflow: auto;
738 8a35f56c 2022-07-16 thomas }
739 9e0c279a 2022-08-10 thomas .branches_space {
740 8a35f56c 2022-07-16 thomas padding-left: 10px;
741 8a35f56c 2022-07-16 thomas padding-top: 5px;
742 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
743 8a35f56c 2022-07-16 thomas float: left;
744 8a35f56c 2022-07-16 thomas width: 8.5em;
745 8a35f56c 2022-07-16 thomas overflow: auto;
746 8a35f56c 2022-07-16 thomas }
747 9e0c279a 2022-08-10 thomas .branch {
748 8a35f56c 2022-07-16 thomas float: left;
749 8a35f56c 2022-07-16 thomas padding-right: 10px;
750 8a35f56c 2022-07-16 thomas padding-top: 5px;
751 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
752 8a35f56c 2022-07-16 thomas }