##// END OF EJS Templates
paper: make annotate popup use theme colors
av6 -
r29625:6e4da488 stable
parent child Browse files
Show More
@@ -1,428 +1,428 b''
1 1 body {
2 2 margin: 0;
3 3 padding: 0;
4 4 background: white;
5 5 color: black;
6 6 font-family: sans-serif;
7 7 }
8 8
9 9 .container {
10 10 padding-left: 115px;
11 11 }
12 12
13 13 .main {
14 14 position: relative;
15 15 background: white;
16 16 padding: 2em 2em 2em 0;
17 17 }
18 18
19 19 #.main {
20 20 width: 98%;
21 21 }
22 22
23 23 .overflow {
24 24 width: 100%;
25 25 overflow: auto;
26 26 }
27 27
28 28 .menu {
29 29 width: 90px;
30 30 margin: 0;
31 31 font-size: 80%;
32 32 text-align: left;
33 33 position: absolute;
34 34 top: 20px;
35 35 left: 20px;
36 36 right: auto;
37 37 }
38 38
39 39 .menu ul {
40 40 list-style: none;
41 41 padding: 0;
42 42 margin: 10px 0 0 0;
43 43 border-left: 2px solid #999;
44 44 }
45 45
46 46 .menu li {
47 47 margin-bottom: 3px;
48 48 padding: 2px 4px;
49 49 background: white;
50 50 color: black;
51 51 font-weight: normal;
52 52 }
53 53
54 54 .menu li.active {
55 55 font-weight: bold;
56 56 }
57 57
58 58 .menu img {
59 59 width: 75px;
60 60 height: 90px;
61 61 border: 0;
62 62 }
63 63
64 64 div.atom-logo {
65 65 margin-top: 10px;
66 66 }
67 67
68 68 .atom-logo img{
69 69 width: 14px;
70 70 height: 14px;
71 71 border: 0;
72 72 }
73 73
74 74 .menu a { color: black; display: block; }
75 75
76 76 .search {
77 77 position: absolute;
78 78 top: .7em;
79 79 right: 2em;
80 80 }
81 81
82 82 form.search div#hint {
83 83 display: none;
84 84 position: absolute;
85 85 top: 40px;
86 86 right: 0px;
87 87 width: 190px;
88 88 padding: 5px;
89 89 background: #ffc;
90 90 font-size: 70%;
91 91 border: 1px solid yellow;
92 92 border-radius: 5px;
93 93 }
94 94
95 95 form.search:hover div#hint { display: block; }
96 96
97 97 a { text-decoration:none; }
98 98 .age { white-space:nowrap; }
99 99 .date { white-space:nowrap; }
100 100 .indexlinks { white-space:nowrap; }
101 101 .parity0,
102 102 .stripes4 > :nth-child(4n+1),
103 103 .stripes2 > :nth-child(2n+1) { background-color: #f0f0f0; }
104 104 .parity1,
105 105 .stripes4 > :nth-child(4n+3),
106 106 .stripes2 > :nth-child(2n+2) { background-color: white; }
107 107 .plusline { color: green; }
108 108 .minusline { color: #dc143c; } /* crimson */
109 109 .atline { color: purple; }
110 110
111 111 .diffstat-table {
112 112 margin-top: 1em;
113 113 }
114 114 .diffstat-file {
115 115 white-space: nowrap;
116 116 font-size: 90%;
117 117 }
118 118 .diffstat-total {
119 119 white-space: nowrap;
120 120 font-size: 90%;
121 121 }
122 122 .diffstat-graph {
123 123 width: 100%;
124 124 }
125 125 .diffstat-add {
126 126 background-color: green;
127 127 float: left;
128 128 }
129 129 .diffstat-remove {
130 130 background-color: red;
131 131 float: left;
132 132 }
133 133
134 134 .navigate {
135 135 text-align: right;
136 136 font-size: 60%;
137 137 margin: 1em 0;
138 138 }
139 139
140 140 .tag {
141 141 color: #999;
142 142 font-size: 70%;
143 143 font-weight: normal;
144 144 margin-left: .5em;
145 145 vertical-align: baseline;
146 146 }
147 147
148 148 .branchhead {
149 149 color: #000;
150 150 font-size: 80%;
151 151 font-weight: normal;
152 152 margin-left: .5em;
153 153 vertical-align: baseline;
154 154 }
155 155
156 156 ul#graphnodes .branchhead {
157 157 font-size: 75%;
158 158 }
159 159
160 160 .branchname {
161 161 color: #000;
162 162 font-size: 60%;
163 163 font-weight: normal;
164 164 margin-left: .5em;
165 165 vertical-align: baseline;
166 166 }
167 167
168 168 h3 .branchname {
169 169 font-size: 80%;
170 170 }
171 171
172 172 /* Common */
173 173 pre { margin: 0; }
174 174
175 175 h2 { font-size: 120%; border-bottom: 1px solid #999; }
176 176 h2 a { color: #000; }
177 177 h3 {
178 178 margin-top: +.7em;
179 179 font-size: 100%;
180 180 }
181 181
182 182 /* log and tags tables */
183 183 .bigtable {
184 184 border-bottom: 1px solid #999;
185 185 border-collapse: collapse;
186 186 font-size: 90%;
187 187 width: 100%;
188 188 font-weight: normal;
189 189 text-align: left;
190 190 }
191 191
192 192 .bigtable td {
193 193 vertical-align: top;
194 194 }
195 195
196 196 .bigtable th {
197 197 padding: 1px 4px;
198 198 border-bottom: 1px solid #999;
199 199 }
200 200 .bigtable tr { border: none; }
201 201 .bigtable .age { width: 7em; }
202 202 .bigtable .author { width: 15em; }
203 203 .bigtable .description { }
204 204 .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; }
205 205 .bigtable .node { width: 5em; font-family: monospace;}
206 206 .bigtable .permissions { width: 8em; text-align: left;}
207 207 .bigtable .size { width: 5em; text-align: right; }
208 208 .bigtable .annotate { text-align: right; }
209 209 .bigtable td.annotate { font-size: smaller; }
210 210 .bigtable td.source { font-size: inherit; }
211 211 tr.thisrev a { color:#999999; text-decoration: none; }
212 212 tr.thisrev td.source { color:#009900; }
213 213 div.annotate-info {
214 214 display: none;
215 215 position: absolute;
216 216 background-color: #FFFFFF;
217 border: 1px solid #000000;
217 border: 1px solid #999;
218 218 text-align: left;
219 219 color: #000000;
220 220 padding: 5px;
221 221 }
222 222 div.annotate-info a { color: #0000FF; }
223 223 td.annotate:hover div.annotate-info { display: inline; }
224 224
225 225 .source, .sourcefirst {
226 226 font-family: monospace;
227 227 white-space: pre;
228 228 padding: 1px 4px;
229 229 font-size: 90%;
230 230 }
231 231 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
232 232 .source a { color: #999; font-size: smaller; font-family: monospace;}
233 233 .bottomline { border-bottom: 1px solid #999; }
234 234
235 235 .sourcelines {
236 236 font-size: 90%;
237 237 position: relative;
238 238 counter-reset: lineno;
239 239 }
240 240
241 241 .wrap > span {
242 242 white-space: pre-wrap;
243 243 }
244 244
245 245 .linewraptoggle {
246 246 float: right;
247 247 }
248 248
249 249 .diffblocks { counter-reset: lineno; }
250 250 .diffblocks > div { counter-increment: lineno; }
251 251
252 252 .sourcelines > span {
253 253 display: inline-block;
254 254 box-sizing: border-box;
255 255 width: 100%;
256 256 padding: 1px 0px 1px 5em;
257 257 counter-increment: lineno;
258 258 }
259 259
260 260 .sourcelines > span:before {
261 261 -moz-user-select: -moz-none;
262 262 -khtml-user-select: none;
263 263 -webkit-user-select: none;
264 264 -ms-user-select: none;
265 265 user-select: none;
266 266 display: inline-block;
267 267 margin-left: -5em;
268 268 width: 4em;
269 269 font-size: smaller;
270 270 color: #999;
271 271 text-align: right;
272 272 content: counters(lineno, ".");
273 273 float: left;
274 274 }
275 275
276 276 .sourcelines > span:target, tr:target td {
277 277 background-color: #bfdfff;
278 278 }
279 279
280 280 .sourcelines > a {
281 281 display: inline-block;
282 282 position: absolute;
283 283 left: 0px;
284 284 width: 4em;
285 285 height: 1em;
286 286 }
287 287
288 288 .fileline { font-family: monospace; }
289 289 .fileline img { border: 0; }
290 290
291 291 .tagEntry .closed { color: #99f; }
292 292
293 293 /* Changeset entry */
294 294 #changesetEntry {
295 295 border-collapse: collapse;
296 296 font-size: 90%;
297 297 width: 100%;
298 298 margin-bottom: 1em;
299 299 }
300 300
301 301 #changesetEntry th {
302 302 padding: 1px 4px;
303 303 width: 4em;
304 304 text-align: right;
305 305 font-weight: normal;
306 306 color: #999;
307 307 margin-right: .5em;
308 308 vertical-align: top;
309 309 }
310 310
311 311 div.description {
312 312 border-left: 2px solid #999;
313 313 margin: 1em 0 1em 0;
314 314 padding: .3em;
315 315 white-space: pre;
316 316 font-family: monospace;
317 317 }
318 318
319 319 /* Graph */
320 320 div#wrapper {
321 321 position: relative;
322 322 border-top: 1px solid black;
323 323 border-bottom: 1px solid black;
324 324 margin: 0;
325 325 padding: 0;
326 326 }
327 327
328 328 canvas {
329 329 position: absolute;
330 330 z-index: 5;
331 331 top: -0.7em;
332 332 margin: 0;
333 333 }
334 334
335 335 ul#graphnodes {
336 336 position: absolute;
337 337 z-index: 10;
338 338 top: -1.0em;
339 339 list-style: none inside none;
340 340 padding: 0;
341 341 }
342 342
343 343 ul#nodebgs {
344 344 list-style: none inside none;
345 345 padding: 0;
346 346 margin: 0;
347 347 top: -0.7em;
348 348 }
349 349
350 350 ul#graphnodes li, ul#nodebgs li {
351 351 height: 39px;
352 352 }
353 353
354 354 ul#graphnodes li .info {
355 355 display: block;
356 356 font-size: 70%;
357 357 position: relative;
358 358 top: -3px;
359 359 }
360 360
361 361 /* Comparison */
362 362 .legend {
363 363 padding: 1.5% 0 1.5% 0;
364 364 }
365 365
366 366 .legendinfo {
367 367 border: 1px solid #999;
368 368 font-size: 80%;
369 369 text-align: center;
370 370 padding: 0.5%;
371 371 }
372 372
373 373 .equal {
374 374 background-color: #ffffff;
375 375 }
376 376
377 377 .delete {
378 378 background-color: #faa;
379 379 color: #333;
380 380 }
381 381
382 382 .insert {
383 383 background-color: #ffa;
384 384 }
385 385
386 386 .replace {
387 387 background-color: #e8e8e8;
388 388 }
389 389
390 390 .header {
391 391 text-align: center;
392 392 }
393 393
394 394 .block {
395 395 border-top: 1px solid #999;
396 396 }
397 397
398 398 .breadcrumb {
399 399 color: gray;
400 400 }
401 401
402 402 .breadcrumb a {
403 403 color: blue;
404 404 }
405 405
406 406 .scroll-loading {
407 407 -webkit-animation: change_color 1s linear 0s infinite alternate;
408 408 -moz-animation: change_color 1s linear 0s infinite alternate;
409 409 -o-animation: change_color 1s linear 0s infinite alternate;
410 410 animation: change_color 1s linear 0s infinite alternate;
411 411 }
412 412
413 413 @-webkit-keyframes change_color {
414 414 from { background-color: #A0CEFF; } to { }
415 415 }
416 416 @-moz-keyframes change_color {
417 417 from { background-color: #A0CEFF; } to { }
418 418 }
419 419 @-o-keyframes change_color {
420 420 from { background-color: #A0CEFF; } to { }
421 421 }
422 422 @keyframes change_color {
423 423 from { background-color: #A0CEFF; } to { }
424 424 }
425 425
426 426 .scroll-loading-error {
427 427 background-color: #FFCCCC !important;
428 428 }
General Comments 0
You need to be logged in to leave comments. Login now