##// END OF EJS Templates
paper: apply styles from annotate tooltip to followlines popup...
av6 -
r35025:7790c424 default
parent child Browse files
Show More
@@ -1,533 +1,532
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 td.annotate {
214 214 white-space: nowrap;
215 215 }
216 216 div.annotate-info {
217 217 z-index: 5;
218 218 display: none;
219 219 position: absolute;
220 220 background-color: #FFFFFF;
221 221 border: 1px solid #999;
222 222 text-align: left;
223 223 color: #000000;
224 224 padding: 5px;
225 225 }
226 226 div.annotate-info a { color: #0000FF; }
227 227 td.annotate:hover div.annotate-info { display: inline; }
228 228
229 229 #diffopts-form {
230 230 font-size: smaller;
231 231 color: #424242;
232 232 padding-bottom: 10px;
233 233 display: none;
234 234 }
235 235
236 236 .source, .sourcefirst {
237 237 font-family: monospace;
238 238 white-space: pre;
239 239 padding: 1px 4px;
240 240 font-size: 90%;
241 241 }
242 242 .sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
243 243 .source a { color: #999; font-size: smaller; font-family: monospace;}
244 244 .bottomline { border-bottom: 1px solid #999; }
245 245
246 246 .sourcelines {
247 247 font-size: 90%;
248 248 position: relative;
249 249 counter-reset: lineno;
250 250 }
251 251
252 252 .wrap > span {
253 253 white-space: pre-wrap;
254 254 }
255 255
256 256 .linewraptoggle {
257 257 float: right;
258 258 }
259 259
260 260 .diffblocks { counter-reset: lineno; }
261 261 .diffblocks > div { counter-increment: lineno; }
262 262
263 263 .sourcelines > span {
264 264 display: inline-block;
265 265 box-sizing: border-box;
266 266 width: 100%;
267 267 padding: 1px 0px 1px 5em;
268 268 counter-increment: lineno;
269 269 }
270 270
271 271 .sourcelines > span:before {
272 272 -moz-user-select: -moz-none;
273 273 -khtml-user-select: none;
274 274 -webkit-user-select: none;
275 275 -ms-user-select: none;
276 276 user-select: none;
277 277 display: inline-block;
278 278 margin-left: -6em;
279 279 width: 4em;
280 280 font-size: smaller;
281 281 color: #999;
282 282 text-align: right;
283 283 content: counters(lineno, ".");
284 284 float: left;
285 285 }
286 286
287 287 .sourcelines > span:target, tr:target td {
288 288 background-color: #bfdfff;
289 289 }
290 290
291 291 /* Followlines */
292 292 tbody.sourcelines > tr.followlines-selected,
293 293 pre.sourcelines > span.followlines-selected {
294 294 background-color: #99C7E9;
295 295 }
296 296
297 297 div#followlines {
298 background-color: #B7B7B7;
299 border: 1px solid #CCC;
300 border-radius: 5px;
301 padding: 4px;
298 background-color: #FFF;
299 border: 1px solid #999;
300 padding: 5px;
302 301 position: fixed;
303 302 }
304 303
305 304 div.followlines-cancel {
306 305 text-align: right;
307 306 }
308 307
309 308 div.followlines-cancel > button {
310 309 line-height: 80%;
311 310 padding: 0;
312 311 border: 0;
313 312 border-radius: 2px;
314 313 background-color: inherit;
315 314 font-weight: bold;
316 315 }
317 316
318 317 div.followlines-cancel > button:hover {
319 318 color: #FFFFFF;
320 319 background-color: #CF1F1F;
321 320 }
322 321
323 322 div.followlines-link {
324 323 margin: 2px;
325 324 margin-top: 4px;
326 325 font-family: sans-serif;
327 326 }
328 327
329 328 .btn-followlines {
330 329 display: none;
331 330 cursor: pointer;
332 331 box-sizing: content-box;
333 332 font-size: 12px;
334 333 width: 13px;
335 334 height: 13px;
336 335 border-radius: 3px;
337 336 margin: 0px;
338 337 margin-top: -2px;
339 338 padding: 0px;
340 339 background-color: #E5FDE5;
341 340 border: 1px solid #9BC19B;
342 341 font-family: monospace;
343 342 text-align: center;
344 343 line-height: 5px;
345 344 }
346 345
347 346 tr .btn-followlines {
348 347 position: absolute;
349 348 }
350 349
351 350 span .btn-followlines {
352 351 float: left;
353 352 }
354 353
355 354 span.followlines-select .btn-followlines {
356 355 margin-left: -1.5em;
357 356 }
358 357
359 358 .btn-followlines:hover {
360 359 transform: scale(1.2, 1.2);
361 360 }
362 361
363 362 .btn-followlines .followlines-plus {
364 363 color: green;
365 364 }
366 365
367 366 .btn-followlines .followlines-minus {
368 367 color: red;
369 368 }
370 369
371 370 .btn-followlines-end {
372 371 background-color: #ffdcdc;
373 372 }
374 373
375 374 .sourcelines tr:hover .btn-followlines,
376 375 .sourcelines span.followlines-select:hover > .btn-followlines {
377 376 display: inline;
378 377 }
379 378
380 379 .btn-followlines-hidden,
381 380 .sourcelines tr:hover .btn-followlines-hidden {
382 381 display: none;
383 382 }
384 383
385 384 .sourcelines > a {
386 385 display: inline-block;
387 386 position: absolute;
388 387 left: 0px;
389 388 width: 4em;
390 389 height: 1em;
391 390 }
392 391
393 392 .fileline { font-family: monospace; }
394 393 .fileline img { border: 0; }
395 394
396 395 .tagEntry .closed { color: #99f; }
397 396
398 397 /* Changeset entry */
399 398 #changesetEntry {
400 399 border-collapse: collapse;
401 400 font-size: 90%;
402 401 width: 100%;
403 402 margin-bottom: 1em;
404 403 }
405 404
406 405 #changesetEntry th {
407 406 padding: 1px 4px;
408 407 width: 4em;
409 408 text-align: right;
410 409 font-weight: normal;
411 410 color: #999;
412 411 margin-right: .5em;
413 412 vertical-align: top;
414 413 }
415 414
416 415 div.description {
417 416 border-left: 2px solid #999;
418 417 margin: 1em 0 1em 0;
419 418 padding: .3em;
420 419 white-space: pre;
421 420 font-family: monospace;
422 421 }
423 422
424 423 /* Graph */
425 424 div#wrapper {
426 425 position: relative;
427 426 border-top: 1px solid black;
428 427 border-bottom: 1px solid black;
429 428 margin: 0;
430 429 padding: 0;
431 430 }
432 431
433 432 canvas {
434 433 position: absolute;
435 434 z-index: 5;
436 435 top: -0.7em;
437 436 margin: 0;
438 437 }
439 438
440 439 ul#graphnodes {
441 440 position: absolute;
442 441 z-index: 10;
443 442 top: -1.0em;
444 443 list-style: none inside none;
445 444 padding: 0;
446 445 }
447 446
448 447 ul#nodebgs {
449 448 list-style: none inside none;
450 449 padding: 0;
451 450 margin: 0;
452 451 top: -0.7em;
453 452 }
454 453
455 454 ul#graphnodes li, ul#nodebgs li {
456 455 height: 39px;
457 456 }
458 457
459 458 ul#graphnodes li .info {
460 459 display: block;
461 460 font-size: 70%;
462 461 position: relative;
463 462 top: -3px;
464 463 }
465 464
466 465 /* Comparison */
467 466 .legend {
468 467 padding: 1.5% 0 1.5% 0;
469 468 }
470 469
471 470 .legendinfo {
472 471 border: 1px solid #999;
473 472 font-size: 80%;
474 473 text-align: center;
475 474 padding: 0.5%;
476 475 }
477 476
478 477 .equal {
479 478 background-color: #ffffff;
480 479 }
481 480
482 481 .delete {
483 482 background-color: #faa;
484 483 color: #333;
485 484 }
486 485
487 486 .insert {
488 487 background-color: #ffa;
489 488 }
490 489
491 490 .replace {
492 491 background-color: #e8e8e8;
493 492 }
494 493
495 494 .header {
496 495 text-align: center;
497 496 }
498 497
499 498 .block {
500 499 border-top: 1px solid #999;
501 500 }
502 501
503 502 .breadcrumb {
504 503 color: gray;
505 504 }
506 505
507 506 .breadcrumb a {
508 507 color: blue;
509 508 }
510 509
511 510 .scroll-loading {
512 511 -webkit-animation: change_color 1s linear 0s infinite alternate;
513 512 -moz-animation: change_color 1s linear 0s infinite alternate;
514 513 -o-animation: change_color 1s linear 0s infinite alternate;
515 514 animation: change_color 1s linear 0s infinite alternate;
516 515 }
517 516
518 517 @-webkit-keyframes change_color {
519 518 from { background-color: #A0CEFF; } to { }
520 519 }
521 520 @-moz-keyframes change_color {
522 521 from { background-color: #A0CEFF; } to { }
523 522 }
524 523 @-o-keyframes change_color {
525 524 from { background-color: #A0CEFF; } to { }
526 525 }
527 526 @keyframes change_color {
528 527 from { background-color: #A0CEFF; } to { }
529 528 }
530 529
531 530 .scroll-loading-error {
532 531 background-color: #FFCCCC !important;
533 532 }
General Comments 0
You need to be logged in to leave comments. Login now