##// END OF EJS Templates
style: fixes for non content pages - especially the login pages
Mads Kiilerich -
r6393:6c1bf3d4 default
parent child Browse files
Show More
@@ -1,4435 +1,4436 b''
1 1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
2 2 border: 0;
3 3 outline: 0;
4 4 font-size: 100%;
5 5 vertical-align: baseline;
6 6 background: transparent;
7 7 margin: 0;
8 8 padding: 0;
9 9 }
10 10
11 11 body {
12 12 line-height: 1;
13 13 height: 100%;
14 14 background: url("../images/background.png") repeat scroll 0 0 #B0B0B0;
15 15 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
16 16 color: #000;
17 17 margin: 0;
18 18 padding: 0;
19 19 font-size: 12px;
20 20 }
21 21
22 22 ol, ul {
23 23 list-style: none;
24 24 }
25 25
26 26 blockquote, q {
27 27 quotes: none;
28 28 }
29 29
30 30 blockquote:before, blockquote:after, q:before, q:after {
31 31 content: none;
32 32 }
33 33
34 34 :focus {
35 35 outline: 0;
36 36 }
37 37
38 38 del {
39 39 text-decoration: line-through;
40 40 }
41 41
42 42 table {
43 43 border-collapse: collapse;
44 44 border-spacing: 0;
45 45 }
46 46
47 47 html {
48 48 height: 100%;
49 49 }
50 50
51 51 a {
52 52 color: #577632;
53 53 text-decoration: none;
54 54 cursor: pointer;
55 55 }
56 56
57 57 a:hover {
58 58 color: #576622;
59 59 text-decoration: underline;
60 60 }
61 61
62 62 h1, h2, h3, h4, h5, h6,
63 63 div.h1, div.h2, div.h3, div.h4, div.h5, div.h6 {
64 64 color: #292929;
65 65 font-weight: 700;
66 66 }
67 67
68 68 h1, div.h1 {
69 69 font-size: 22px;
70 70 }
71 71
72 72 h2, div.h2 {
73 73 font-size: 20px;
74 74 }
75 75
76 76 h3, div.h3 {
77 77 font-size: 18px;
78 78 }
79 79
80 80 h4, div.h4 {
81 81 font-size: 16px;
82 82 }
83 83
84 84 h5, div.h5 {
85 85 font-size: 14px;
86 86 }
87 87
88 88 h6, div.h6 {
89 89 font-size: 11px;
90 90 }
91 91
92 92 ul.circle {
93 93 list-style-type: circle;
94 94 }
95 95
96 96 ul.disc {
97 97 list-style-type: disc;
98 98 }
99 99
100 100 ul.square {
101 101 list-style-type: square;
102 102 }
103 103
104 104 ol.lower-roman {
105 105 list-style-type: lower-roman;
106 106 }
107 107
108 108 ol.upper-roman {
109 109 list-style-type: upper-roman;
110 110 }
111 111
112 112 ol.lower-alpha {
113 113 list-style-type: lower-alpha;
114 114 }
115 115
116 116 ol.upper-alpha {
117 117 list-style-type: upper-alpha;
118 118 }
119 119
120 120 ol.decimal {
121 121 list-style-type: decimal;
122 122 }
123 123
124 124 div.color {
125 125 clear: both;
126 126 overflow: hidden;
127 127 position: absolute;
128 128 background: #FFF;
129 129 margin: 7px 0 0 60px;
130 130 padding: 1px 1px 1px 0;
131 131 }
132 132
133 133 div.color a {
134 134 width: 15px;
135 135 height: 15px;
136 136 display: block;
137 137 float: left;
138 138 margin: 0 0 0 1px;
139 139 padding: 0;
140 140 }
141 141
142 142 div.options {
143 143 clear: both;
144 144 overflow: hidden;
145 145 position: absolute;
146 146 background: #FFF;
147 147 margin: 7px 0 0 162px;
148 148 padding: 0;
149 149 }
150 150
151 151 div.options a {
152 152 height: 1%;
153 153 display: block;
154 154 text-decoration: none;
155 155 margin: 0;
156 156 padding: 3px 8px;
157 157 }
158 158
159 159 code,
160 160 .code pre,
161 161 div.readme .readme_box pre,
162 162 div.rst-block pre,
163 163 div.formatted-fixed,
164 164 #changeset_content div.message,
165 165 .CodeMirror .CodeMirror-code pre {
166 166 font-size: 12px;
167 167 font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
168 168 }
169 169
170 170 div.formatted-fixed {
171 171 white-space: pre-wrap;
172 172 }
173 173
174 174 .changeset_hash {
175 175 font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
176 176 }
177 177
178 178 .top-left-rounded-corner {
179 179 border-top-left-radius: 8px;
180 180 }
181 181
182 182 .top-right-rounded-corner {
183 183 border-top-right-radius: 8px;
184 184 }
185 185
186 186 .bottom-left-rounded-corner {
187 187 border-bottom-left-radius: 8px;
188 188 }
189 189
190 190 .bottom-right-rounded-corner {
191 191 border-bottom-right-radius: 8px;
192 192 }
193 193
194 194 .top-left-rounded-corner-mid {
195 195 border-top-left-radius: 4px;
196 196 }
197 197
198 198 .top-right-rounded-corner-mid {
199 199 border-top-right-radius: 4px;
200 200 }
201 201
202 202 .bottom-left-rounded-corner-mid {
203 203 border-bottom-left-radius: 4px;
204 204 }
205 205
206 206 .bottom-right-rounded-corner-mid {
207 207 border-bottom-right-radius: 4px;
208 208 }
209 209
210 210 .help-block {
211 211 color: #999999;
212 212 display: block;
213 213 margin: 0 0 10px;
214 214 }
215 215
216 216 .empty_data {
217 217 color: #B9B9B9;
218 218 }
219 219
220 220 .inline-comments-general.show-general-status .hidden.general-only {
221 221 display: block !important;
222 222 }
223 223
224 224 /* Bootstrap compatible */
225 225 .show {
226 226 display: block !important;
227 227 }
228 228 .hidden {
229 229 display: none !important;
230 230 }
231 231 .invisible {
232 232 visibility: hidden;
233 233 }
234 234
235 235 .truncate {
236 236 white-space: nowrap;
237 237 overflow: hidden;
238 238 text-overflow: ellipsis;
239 239 -o-text-overflow: ellipsis;
240 240 -ms-text-overflow: ellipsis;
241 241 }
242 242
243 243 .truncate.autoexpand:hover {
244 244 overflow: visible;
245 245 }
246 246
247 247 a.permalink {
248 248 visibility: hidden;
249 249 position: absolute;
250 250 margin: 3px 4px;
251 251 }
252 252
253 253 a.permalink:hover {
254 254 text-decoration: none;
255 255 }
256 256
257 257 h1:hover > a.permalink,
258 258 h2:hover > a.permalink,
259 259 h3:hover > a.permalink,
260 260 h4:hover > a.permalink,
261 261 h5:hover > a.permalink,
262 262 h6:hover > a.permalink,
263 263 div:hover > a.permalink,
264 264 div:hover > span > a.permalink {
265 265 visibility: visible;
266 266 }
267 267
268 268 nav.navbar #logo {
269 269 padding-left: 10px;
270 270 }
271 271
272 272 #content nav.navbar #logo {
273 273 padding-left: inherit;
274 274 }
275 275
276 276 nav.navbar #logo .navbar-brand img {
277 277 padding-top: 5px;
278 278 margin-right: 5px;
279 279 }
280 280
281 281 nav.navbar #logo .navbar-brand {
282 282 font-size: 20px;
283 283 color: white;
284 284 float: left;
285 285 height: 44px;
286 286 line-height: 44px;
287 287 }
288 288
289 289 #content nav.navbar #logo .navbar-brand {
290 290 height: inherit;
291 291 line-height: inherit;
292 292 }
293 293
294 294 nav.navbar ul#logged-user {
295 295 margin-bottom: 5px !important;
296 296 border-radius: 0px 0px 8px 8px;
297 297 height: 37px;
298 298 background-color: #577632;
299 299 background-repeat: repeat-x;
300 300 background-image: linear-gradient(to bottom, #577632, #577632);
301 301 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
302 302 }
303 303
304 304 nav.navbar ul#logged-user li {
305 305 list-style: none;
306 306 float: left;
307 307 margin: 8px 0 0;
308 308 padding: 4px 12px;
309 309 border-left: 1px solid #576622;
310 310 }
311 311
312 312 nav.navbar ul#logged-user li.first {
313 313 border-left: none;
314 314 margin: 4px;
315 315 }
316 316
317 317 nav.navbar ul#logged-user li.first div.gravatar {
318 318 margin-top: -2px;
319 319 }
320 320
321 321 nav.navbar ul#logged-user li.first div.account {
322 322 padding-top: 4px;
323 323 float: left;
324 324 }
325 325
326 326 nav.navbar ul#logged-user li.last {
327 327 border-right: none;
328 328 }
329 329
330 330 nav.navbar ul#logged-user li a {
331 331 color: #fff;
332 332 font-weight: 700;
333 333 text-decoration: none;
334 334 }
335 335
336 336 nav.navbar ul#logged-user li a:hover {
337 337 text-decoration: underline;
338 338 }
339 339
340 340 nav.navbar ul#logged-user li.highlight a {
341 341 color: #fff;
342 342 }
343 343
344 344 nav.navbar ul#logged-user li.highlight a:hover {
345 345 color: #FFF;
346 346 }
347 347 nav.navbar {
348 348 min-height: 44px;
349 349 clear: both;
350 350 position: relative;
351 351 background-color: #577632;
352 352 background-repeat: repeat-x;
353 353 background-image: linear-gradient(to bottom, #577632, #577632);
354 354 margin: 0;
355 355 padding: 0;
356 356 display: block;
357 357 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
358 358 border-radius: 0px 0px 4px 4px;
359 359 }
360 360
361 361 .header-pos-fix,
362 362 .anchor {
363 363 margin-top: -46px;
364 364 padding-top: 46px;
365 365 }
366 366
367 367 nav.navbar #home a {
368 368 height: 40px;
369 369 width: 46px;
370 370 display: block;
371 371 background-position: 0 0;
372 372 margin: 0;
373 373 padding: 0;
374 374 }
375 375
376 376 nav.navbar #home a:hover {
377 377 background-position: 0 -40px;
378 378 }
379 379
380 380 nav.navbar #logo {
381 381 float: left;
382 382 position: absolute;
383 383 }
384 384
385 385 nav.navbar #logo h1 {
386 386 color: #FFF;
387 387 font-size: 20px;
388 388 margin: 12px 0 0 13px;
389 389 padding: 0;
390 390 }
391 391
392 392 nav.navbar #logo a {
393 393 color: #fff;
394 394 text-decoration: none;
395 395 }
396 396
397 397 nav.navbar #logo a:hover {
398 398 color: #bfe3ff;
399 399 }
400 400
401 401 nav.navbar #quick {
402 402 position: relative;
403 403 float: right;
404 404 list-style-type: none;
405 405 list-style-position: outside;
406 406 margin: 4px 8px 0 0;
407 407 padding: 0;
408 408 border-radius: 4px;
409 409 }
410 410
411 411 nav.navbar #quick li span.short {
412 412 padding: 9px 6px 8px 6px;
413 413 }
414 414
415 415 nav.navbar #quick li span {
416 416 display: inline;
417 417 margin: 0;
418 418 }
419 419
420 420 nav.navbar #quick li span.normal {
421 421 border: none;
422 422 padding: 10px 12px 8px;
423 423 }
424 424
425 425 nav.navbar #quick li .icon {
426 426 border-left: none;
427 427 padding-left: 10px;
428 428 display: inline;
429 429 }
430 430
431 431 nav.navbar #quick li .icon img {
432 432 vertical-align: middle;
433 433 margin-bottom: 2px;
434 434 }
435 435
436 436 nav.navbar #quick ul.repo_switcher {
437 437 max-height: 275px;
438 438 overflow-x: hidden;
439 439 overflow-y: auto;
440 440 }
441 441
442 442 nav.navbar #quick ul.repo_switcher li.qfilter_rs {
443 443 padding: 2px 3px;
444 444 padding-right: 17px;
445 445 }
446 446
447 447 nav.navbar #quick ul.repo_switcher li.qfilter_rs input {
448 448 width: 100%;
449 449 border-radius: 10px;
450 450 padding: 2px 7px;
451 451 }
452 452
453 453 nav.navbar #quick .repo_switcher_type {
454 454 position: absolute;
455 455 left: 0;
456 456 top: 9px;
457 457 margin: 0px 2px 0px 2px;
458 458 }
459 459
460 460 .navbar-toggle {
461 461 display: none;
462 462 }
463 463
464 464 .groups_breadcrumbs a {
465 465 color: #fff;
466 466 }
467 467
468 468 .groups_breadcrumbs a:hover {
469 469 color: #bfe3ff;
470 470 text-decoration: none;
471 471 }
472 472
473 473 .dt_repo {
474 474 white-space: nowrap;
475 475 color: #577632;
476 476 }
477 477
478 478 .dt_repo_pending {
479 479 opacity: 0.5;
480 480 }
481 481
482 482 .dt_repo i.icon-keyhole-circled,
483 483 .dt_repo i.icon-globe
484 484 {
485 485 font-size: 16px;
486 486 vertical-align: -2px;
487 487 margin: 0px 1px 0px 3px;
488 488 }
489 489
490 490 .dt_repo a {
491 491 text-decoration: none;
492 492 }
493 493
494 494 .dt_repo .dt_repo_name:hover {
495 495 text-decoration: underline;
496 496 }
497 497
498 498 #content #left {
499 499 left: 0;
500 500 width: 280px;
501 501 position: absolute;
502 502 }
503 503
504 504 #content #right {
505 505 margin: 0 60px 10px 290px;
506 506 }
507 507
508 508 #content nav.navbar,
509 #content div.panel {
509 div.panel {
510 510 clear: both;
511 511 background: #fff;
512 512 margin: 0 0 10px;
513 513 padding: 0 0 10px;
514 514 border-radius: 4px 4px 4px 4px;
515 515 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
516 516 }
517 517
518 #content div.panel div.panel-heading {
518 div.panel div.panel-heading {
519 519 clear: both;
520 520 overflow: hidden;
521 521 background-color: #577632;
522 522 background-repeat: repeat-x;
523 523 background-image: linear-gradient(to bottom, #577632, #577632);
524 524 margin: 0 0 20px;
525 525 padding: 10px 20px;
526 526 border-radius: 4px 4px 0 0;
527 527 }
528 528
529 529 #content div.panel div.panel-heading a {
530 530 color: #FFFFFF;
531 531 }
532 532
533 533 #content div.panel div.panel-heading ul.links li {
534 534 list-style: none;
535 535 float: left;
536 536 margin: 0;
537 537 padding: 0;
538 538 }
539 539
540 540 #content div.panel div.panel-heading ul.links li a {
541 541 font-size: 13px;
542 542 font-weight: 700;
543 543 height: 1%;
544 544 text-decoration: none;
545 545 }
546 546
547 547 #content div.panel div.panel-heading ul.links.nav-tabs li a {
548 548 float: left;
549 549 color: #fff;
550 550 margin: 0;
551 551 padding: 11px 10px 11px 10px;
552 552 }
553 553
554 554 .clearfix::before, .clearfix::after, .dl-horizontal dd::before, .dl-horizontal dd::after, .container::before, .container::after, .container-fluid::before, .container-fluid::after, .row::before, .row::after, .form-horizontal .form-group::before, .form-horizontal .form-group::after, .btn-toolbar::before, .btn-toolbar::after, .btn-group-vertical > .btn-group::before, .btn-group-vertical > .btn-group::after, .nav::before, .nav::after, .navbar::before, .navbar::after, .navbar-header::before, .navbar-header::after, .navbar-collapse::before, .navbar-collapse::after, .pager::before, .pager::after, .panel::before, .panel::after, .panel-body::before, .panel-body::after, .modal-header::before, .modal-header::after, .modal-footer::before, .modal-footer::after, td.inline-comments::before, td.inline-comments::after {
555 555 content: " ";
556 556 display: table;
557 557 }
558 558
559 559 .clearfix::after, .dl-horizontal dd::after, .container::after, .container-fluid::after, .row::after, .form-horizontal .form-group::after, .btn-toolbar::after, .btn-group-vertical > .btn-group::after, .nav::after, .navbar::after, .navbar-header::after, .navbar-collapse::after, .pager::after, .panel::after, .panel-body::after, .modal-header::after, .modal-footer::after, td.inline-comments::after {
560 560 clear: both;
561 561 }
562 562
563 563 /* avoid conflict with .container in changeset tables */
564 564 #content div.panel table .container::before,
565 565 #content div.panel table .container::after {
566 566 content: inherit;
567 567 display: inherit;
568 568 }
569 569
570 570 .pull-left {
571 571 float: left;
572 572 }
573 573
574 574 .pull-right {
575 575 float: right;
576 576 }
577 577
578 578 #content div.panel div.panel-heading .pull-left,
579 579 #content div.panel div.panel-heading .pull-left a,
580 580 #content div.panel div.panel-heading .pull-right,
581 581 #content div.panel div.panel-heading .pull-right a {
582 582 color: white;
583 583 }
584 584
585 585 #content div.panel h1,
586 586 #content div.panel h2,
587 587 #content div.panel h3,
588 588 #content div.panel h4,
589 589 #content div.panel h5,
590 590 #content div.panel h6,
591 591 #content div.panel div.h1,
592 592 #content div.panel div.h2,
593 593 #content div.panel div.h3,
594 594 #content div.panel div.h4,
595 595 #content div.panel div.h5,
596 596 #content div.panel div.h6 {
597 597 clear: both;
598 598 overflow: hidden;
599 599 margin: 8px 0 3px;
600 600 padding-bottom: 2px;
601 601 }
602 602
603 603 #content div.panel p {
604 604 color: #5f5f5f;
605 605 font-size: 12px;
606 606 line-height: 150%;
607 607 margin: 0 24px 10px;
608 608 padding: 0;
609 609 }
610 610
611 611 #content div.panel blockquote {
612 612 border-left: 4px solid #DDD;
613 613 color: #5f5f5f;
614 614 font-size: 11px;
615 615 line-height: 150%;
616 616 margin: 0 34px;
617 617 padding: 0 0 0 14px;
618 618 }
619 619
620 620 #content div.panel blockquote p {
621 621 margin: 10px 0;
622 622 padding: 0;
623 623 }
624 624
625 625 #content div.panel dl {
626 626 margin: 10px 0px;
627 627 }
628 628
629 629 #content div.panel dt {
630 630 font-size: 12px;
631 631 margin: 0;
632 632 }
633 633
634 634 #content div.panel dd {
635 635 font-size: 12px;
636 636 margin: 0;
637 637 padding: 8px 0 8px 15px;
638 638 }
639 639
640 640 #content div.panel li {
641 641 font-size: 12px;
642 642 padding: 4px 0;
643 643 }
644 644
645 645 #content div.panel ul.disc,
646 646 #content div.panel ul.circle {
647 647 margin: 10px 24px 10px 38px;
648 648 }
649 649
650 650 #content div.panel ul.square {
651 651 margin: 10px 24px 10px 40px;
652 652 }
653 653
654 654 #content div.panel img.left {
655 655 border: none;
656 656 float: left;
657 657 margin: 10px 10px 10px 0;
658 658 }
659 659
660 660 #content div.panel img.right {
661 661 border: none;
662 662 float: right;
663 663 margin: 10px 0 10px 10px;
664 664 }
665 665
666 666 #content div.panel div.messages {
667 667 clear: both;
668 668 overflow: hidden;
669 669 margin: 0 20px;
670 670 padding: 0;
671 671 }
672 672
673 673 #content div.panel div.message {
674 674 float: left;
675 675 overflow: hidden;
676 676 margin: 0;
677 677 padding: 5px 0;
678 678 white-space: pre-wrap;
679 679 }
680 680 #content div.panel #changeset_content div.message {
681 681 padding: 15px 0;
682 682 }
683 683 #content div.panel div.expand {
684 684 width: 110%;
685 685 height: 14px;
686 686 font-size: 10px;
687 687 text-align: center;
688 688 cursor: pointer;
689 689 color: #666;
690 690 background: linear-gradient(to bottom,rgba(255,255,255,0),rgba(64,96,128,0.1));
691 691 display: none;
692 692 overflow: hidden;
693 693 }
694 694 #content div.panel div.expand .expandtext {
695 695 background-color: #ffffff;
696 696 padding: 2px;
697 697 border-radius: 2px;
698 698 }
699 699
700 700 #content div.panel div.message a {
701 701 font-weight: 400 !important;
702 702 }
703 703
704 704 #content div.panel div.message div.image {
705 705 float: left;
706 706 margin: 9px 0 0 5px;
707 707 padding: 6px;
708 708 }
709 709
710 710 #content div.panel div.message div.image img {
711 711 vertical-align: middle;
712 712 margin: 0;
713 713 }
714 714
715 715 #content div.panel div.message div.text {
716 716 float: left;
717 717 margin: 0;
718 718 padding: 9px 6px;
719 719 }
720 720
721 721 #content div.panel div.message div.text h1,
722 722 #content div.panel div.message div.text h2,
723 723 #content div.panel div.message div.text h3,
724 724 #content div.panel div.message div.text h4,
725 725 #content div.panel div.message div.text h5,
726 726 #content div.panel div.message div.text h6 {
727 727 border: none;
728 728 margin: 0;
729 729 padding: 0;
730 730 }
731 731
732 732 #content div.panel div.message div.text span {
733 733 height: 1%;
734 734 display: block;
735 735 margin: 0;
736 736 padding: 5px 0 0;
737 737 }
738 738
739 739 #content div.panel div.message-error {
740 740 height: 1%;
741 741 clear: both;
742 742 overflow: hidden;
743 743 background: #FBE3E4;
744 744 border: 1px solid #FBC2C4;
745 745 color: #860006;
746 746 }
747 747
748 748 #content div.panel div.message-error h6 {
749 749 color: #860006;
750 750 }
751 751
752 752 #content div.panel div.message-warning {
753 753 height: 1%;
754 754 clear: both;
755 755 overflow: hidden;
756 756 background: #FFF6BF;
757 757 border: 1px solid #FFD324;
758 758 color: #5f5200;
759 759 }
760 760
761 761 #content div.panel div.message-warning h6 {
762 762 color: #5f5200;
763 763 }
764 764
765 765 #content div.panel div.message-notice {
766 766 height: 1%;
767 767 clear: both;
768 768 overflow: hidden;
769 769 background: #8FBDE0;
770 770 border: 1px solid #6BACDE;
771 771 color: #003863;
772 772 }
773 773
774 774 #content div.panel div.message-notice h6 {
775 775 color: #003863;
776 776 }
777 777
778 778 #content div.panel div.message-success {
779 779 height: 1%;
780 780 clear: both;
781 781 overflow: hidden;
782 782 background: #E6EFC2;
783 783 border: 1px solid #C6D880;
784 784 color: #4e6100;
785 785 }
786 786
787 787 #content div.panel div.message-success h6 {
788 788 color: #4e6100;
789 789 }
790 790
791 791 #content div.panel div.form div.form-horizontal div.form-group {
792 792 height: 1%;
793 793 min-height: 12px;
794 794 border-bottom: 1px solid #DDD;
795 795 clear: both;
796 796 padding: 0;
797 797 margin: 10px 0;
798 798 }
799 799
800 800 #content div.panel div.form div.form-horizontal div.form-group-first {
801 801 padding: 0 0 10px;
802 802 }
803 803
804 804 #content div.panel div.form div.form-horizontal div.form-group-noborder {
805 805 border-bottom: 0 !important;
806 806 }
807 807
808 808 #content div.panel div.form div.form-horizontal div.form-group span.error-message {
809 809 height: 1%;
810 810 display: inline-block;
811 811 color: red;
812 812 margin: 8px 0 0 4px;
813 813 padding: 0;
814 814 }
815 815
816 816 #content div.panel div.form div.form-horizontal div.form-group span.success {
817 817 height: 1%;
818 818 display: block;
819 819 color: #316309;
820 820 margin: 8px 0 0;
821 821 padding: 0;
822 822 }
823 823
824 824 #content div.panel div.form div.form-horizontal div.form-group > label {
825 825 margin: 0;
826 826 }
827 827
828 828 #content div.panel div.form div.form-horizontal div.form-group > label {
829 829 width: 155px;
830 830 position: absolute;
831 831 margin: 0;
832 832 padding: 0px 0 0 0px;
833 833 }
834 834
835 835 #content div.panel div.form div.form-horizontal div.form-group > label {
836 836 color: #393939;
837 837 font-weight: 700;
838 838 }
839 839
840 840 #content div.panel div.form div.form-horizontal div.form-group > div {
841 841 margin: 0 20px 0 200px;
842 842 }
843 843
844 844 #content div.panel div.form div.form-horizontal div.form-group > div.summary,
845 845 #content div.panel div.form div.form-horizontal div.form-group > div.summary-short {
846 846 margin: 10px 20px 10px 110px;
847 847 }
848 848 #content div.panel div.form div.form-horizontal div.form-group > div.summary-short input {
849 849 margin: 0;
850 850 }
851 851 #content div.panel div.form div.form-horizontal div.form-group > div.file {
852 852 margin: 0 20px 0 200px;
853 853 }
854 854
855 855 #content div.panel div.form div.form-horizontal div.form-group > label > input[type=text],
856 856 #content div.panel div.form div.form-horizontal div.form-group > label > input[type=password],
857 857 #content div.panel div.form div.form-horizontal div.form-group > div input[type=text],
858 858 #content div.panel div.form div.form-horizontal div.form-group > div input[type=password],
859 859 #content div.panel div.form div.form-horizontal div.form-group > label > textarea,
860 860 #content div.panel div.form div.form-horizontal div.form-group > div textarea,
861 861 .reviewer_ac input {
862 862 background: #FFF;
863 863 border-top: 1px solid #b3b3b3;
864 864 border-left: 1px solid #b3b3b3;
865 865 border-right: 1px solid #eaeaea;
866 866 border-bottom: 1px solid #eaeaea;
867 867 color: #000;
868 868 font-size: 12px;
869 869 margin: 5px 0 10px;
870 870 padding: 7px 7px 6px;
871 871 }
872 872
873 873 #content div.panel div.form div.form-horizontal div.form-group > div input#clone_url,
874 874 #content div.panel div.form div.form-horizontal div.form-group > div input#clone_url_id
875 875 {
876 876 font-size: 14px;
877 877 padding: 0 2px;
878 878 }
879 879
880 880 #content div.panel div.form div.form-horizontal div.form-group div.file input {
881 881 background: none repeat scroll 0 0 #FFFFFF;
882 882 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
883 883 border-style: solid;
884 884 border-width: 1px;
885 885 color: #000000;
886 886 font-size: 12px;
887 887 margin: 0;
888 888 padding: 7px 7px 6px;
889 889 }
890 890
891 891 input[readonly],
892 892 input.disabled {
893 893 background-color: #F5F5F5 !important;
894 894 }
895 895
896 896 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline,
897 897 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline,
898 898 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline {
899 899 display: inline;
900 900 }
901 901
902 902 #content div.panel div.form div.form-horizontal div.form-group > div select.form-control,
903 903 #content div.panel div.form div.form-horizontal div.form-group > div div.form-control.select2-container,
904 904 #content div.panel div.form div.form-horizontal div.form-group > div input.form-control {
905 905 width: 100%;
906 906 margin: 5px 0 10px;
907 907 }
908 908
909 909 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline select.form-control,
910 910 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline div.form-control.select2-container,
911 911 #content div.panel div.form div.form-horizontal div.form-group > div.form-inline input.form-control {
912 912 width: inherit;
913 913 }
914 914
915 915 #content div.panel div.form div.form-horizontal div.form-group > div input.date {
916 916 width: 177px;
917 917 }
918 918
919 919 #content div.panel div.form div.form-horizontal div.form-group > div input.button {
920 920 background: #D4D0C8;
921 921 border-top: 1px solid #FFF;
922 922 border-left: 1px solid #FFF;
923 923 border-right: 1px solid #404040;
924 924 border-bottom: 1px solid #404040;
925 925 color: #000;
926 926 margin: 0;
927 927 padding: 4px 8px;
928 928 }
929 929
930 930 #content div.panel div.form div.form-horizontal div.form-group > div textarea {
931 931 width: 100%;
932 932 height: 220px;
933 933 overflow-y: auto;
934 934 outline: none;
935 935 }
936 936
937 937 #content div.panel div.form div.form-horizontal div.form-group input[type=text]:focus,
938 938 #content div.panel div.form div.form-horizontal div.form-group input[type=password]:focus,
939 939 #content div.panel div.form div.form-horizontal div.form-group input[type=file]:focus,
940 940 #content div.panel div.form div.form-horizontal div.form-group textarea:focus,
941 941 #content div.panel div.form div.form-horizontal div.form-group select:focus,
942 942 .reviewer_ac input:focus {
943 943 background: #f6f6f6;
944 944 border-color: #666;
945 945 }
946 946
947 947 .reviewer_ac {
948 948 padding: 10px
949 949 }
950 950
951 951 div.form div.form-horizontal div.form-group div.button {
952 952 margin: 0;
953 953 padding: 0 0 0 8px;
954 954 }
955 955
956 956 #content div.panel table.table {
957 957 border: 1px solid transparent;
958 958 }
959 959
960 960 #content div.panel table {
961 961 width: 100%;
962 962 border-collapse: separate;
963 963 margin: 0;
964 964 padding: 0;
965 965 border: 1px solid #eee;
966 966 border-radius: 4px;
967 967 }
968 968
969 969 #content div.panel table th {
970 970 background: #eee;
971 971 border-bottom: 1px solid #ddd;
972 972 padding: 5px 0px 5px 5px;
973 973 text-align: left;
974 974 }
975 975
976 976 #content div.panel table th.left {
977 977 text-align: left;
978 978 }
979 979
980 980 #content div.panel table th.right {
981 981 text-align: right;
982 982 }
983 983
984 984 #content div.panel table th.center {
985 985 text-align: center;
986 986 }
987 987
988 988 #content div.panel table th.selected {
989 989 vertical-align: middle;
990 990 padding: 0;
991 991 }
992 992
993 993 #content div.panel table td {
994 994 background: #fff;
995 995 border-bottom: 1px solid #cdcdcd;
996 996 vertical-align: middle;
997 997 padding: 5px;
998 998 }
999 999
1000 1000 #content div.panel table td.compact {
1001 1001 padding: 0;
1002 1002 }
1003 1003
1004 1004 #content div.panel table tr.selected td {
1005 1005 background: #FFC;
1006 1006 }
1007 1007
1008 1008 #content div.panel table td.selected {
1009 1009 width: 3%;
1010 1010 text-align: center;
1011 1011 vertical-align: middle;
1012 1012 padding: 0;
1013 1013 }
1014 1014
1015 1015 #content div.panel table td.action {
1016 1016 width: 45%;
1017 1017 text-align: left;
1018 1018 }
1019 1019
1020 1020 #content div.panel table td.date {
1021 1021 width: 33%;
1022 1022 text-align: center;
1023 1023 }
1024 1024
1025 1025 #content div.panel div.action {
1026 1026 float: right;
1027 1027 background: #FFF;
1028 1028 text-align: right;
1029 1029 margin: 10px 0 0;
1030 1030 padding: 0;
1031 1031 }
1032 1032
1033 1033 #content div.panel div.action select {
1034 1034 font-size: 11px;
1035 1035 margin: 0;
1036 1036 }
1037 1037
1038 1038 #content div.panel div.action .ui-selectmenu {
1039 1039 margin: 0;
1040 1040 padding: 0;
1041 1041 }
1042 1042
1043 1043 #content div.panel ul.pagination {
1044 1044 height: 1%;
1045 1045 overflow: hidden;
1046 1046 text-align: right;
1047 1047 margin: 10px 0 0;
1048 1048 padding: 0;
1049 1049 }
1050 1050
1051 1051 #content div.panel ul.pagination > li {
1052 1052 display: inline;
1053 1053 }
1054 1054
1055 1055 #content div.panel ul.pagination > :first-child {
1056 1056 border-radius: 4px 0px 0px 4px;
1057 1057 }
1058 1058
1059 1059 #content div.panel ul.pagination > :last-child {
1060 1060 border-radius: 0px 4px 4px 0px;
1061 1061 border-right: 1px solid #cfcfcf;
1062 1062 }
1063 1063
1064 1064 #content div.panel ul.pagination > li {
1065 1065 height: 1%;
1066 1066 float: left;
1067 1067 background: #ebebeb url("../images/pager.png") repeat-x;
1068 1068 border-top: 1px solid #dedede;
1069 1069 border-left: 1px solid #cfcfcf;
1070 1070 border-bottom: 1px solid #c4c4c4;
1071 1071 color: #4A4A4A;
1072 1072 font-weight: 700;
1073 1073 padding: 6px;
1074 1074 }
1075 1075
1076 1076 #content div.panel ul.pagination > li.active {
1077 1077 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1078 1078 border-top: 1px solid #ccc;
1079 1079 border-left: 1px solid #bebebe;
1080 1080 border-bottom: 1px solid #afafaf;
1081 1081 color: #515151;
1082 1082 }
1083 1083
1084 1084 #content div.panel ul.pagination > a:hover,
1085 1085 #content div.panel ul.pagination > a:active {
1086 1086 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1087 1087 border-top: 1px solid #ccc;
1088 1088 border-left: 1px solid #bebebe;
1089 1089 border-bottom: 1px solid #afafaf;
1090 1090 text-decoration: none;
1091 1091 }
1092 1092
1093 1093 #content div.panel ul.pagination > li a {
1094 1094 color: inherit;
1095 1095 text-decoration: inherit;
1096 1096 }
1097 1097
1098 1098 #content div.panel div.traffic div.legend {
1099 1099 clear: both;
1100 1100 overflow: hidden;
1101 1101 border-bottom: 1px solid #ddd;
1102 1102 margin: 0 0 10px;
1103 1103 padding: 0 0 10px;
1104 1104 }
1105 1105
1106 1106 #content div.panel div.traffic div.legend h6 {
1107 1107 float: left;
1108 1108 border: none;
1109 1109 margin: 0;
1110 1110 padding: 0;
1111 1111 }
1112 1112
1113 1113 #content div.panel div.traffic div.legend li {
1114 1114 list-style: none;
1115 1115 float: left;
1116 1116 font-size: 11px;
1117 1117 margin: 0;
1118 1118 padding: 0 8px 0 4px;
1119 1119 }
1120 1120
1121 1121 #content div.panel div.traffic div.legend li.visits {
1122 1122 border-left: 12px solid #edc240;
1123 1123 }
1124 1124
1125 1125 #content div.panel div.traffic div.legend li.pageviews {
1126 1126 border-left: 12px solid #afd8f8;
1127 1127 }
1128 1128
1129 1129 #content div.panel div.traffic table {
1130 1130 width: auto;
1131 1131 }
1132 1132
1133 1133 #content div.panel div.traffic table td {
1134 1134 background: transparent;
1135 1135 border: none;
1136 1136 padding: 2px 3px 3px;
1137 1137 }
1138 1138
1139 1139 #content div.panel div.traffic table td.legendLabel {
1140 1140 padding: 0 3px 2px;
1141 1141 }
1142 1142
1143 1143 #content div.panel #summary-panel-body {
1144 1144 position: relative;
1145 1145 }
1146 1146
1147 1147 #content div.panel #summary {
1148 1148 margin-right: 200px;
1149 1149 min-height: 240px;
1150 1150 }
1151 1151
1152 1152 #summary-menu-stats {
1153 1153 float: left;
1154 1154 width: 180px;
1155 1155 position: absolute;
1156 1156 top: 0;
1157 1157 right: 0;
1158 1158 }
1159 1159
1160 1160 #summary-menu-stats ul {
1161 1161 display: block;
1162 1162 background-color: #f9f9f9;
1163 1163 border: 1px solid #d1d1d1;
1164 1164 border-radius: 4px;
1165 1165 }
1166 1166
1167 1167 #content #summary-menu-stats li {
1168 1168 border-top: 1px solid #d1d1d1;
1169 1169 padding: 0;
1170 1170 }
1171 1171
1172 1172 #content #summary-menu-stats li:hover {
1173 1173 background: #f0f0f0;
1174 1174 }
1175 1175
1176 1176 #content #summary-menu-stats li:first-child {
1177 1177 border-top: none;
1178 1178 }
1179 1179
1180 1180 #summary-menu-stats a {
1181 1181 display: block;
1182 1182 padding: 12px 10px;
1183 1183 background-repeat: no-repeat;
1184 1184 background-position: 10px 50%;
1185 1185 padding-right: 10px;
1186 1186 }
1187 1187
1188 1188 #repo_size_2.loaded {
1189 1189 margin-left: 30px;
1190 1190 display: block;
1191 1191 padding-right: 10px;
1192 1192 padding-bottom: 7px;
1193 1193 }
1194 1194
1195 1195 #summary-menu-stats a:hover {
1196 1196 text-decoration: none;
1197 1197 }
1198 1198
1199 1199 #summary-menu-stats .badge {
1200 1200 padding: 2px 4px !important;
1201 1201 font-size: 10px;
1202 1202 }
1203 1203
1204 1204 #summary .metatag {
1205 1205 display: inline-block;
1206 1206 padding: 3px 5px;
1207 1207 margin-bottom: 3px;
1208 1208 margin-right: 1px;
1209 1209 border-radius: 5px;
1210 1210 }
1211 1211
1212 1212 #content div.panel #summary p {
1213 1213 margin-bottom: -5px;
1214 1214 width: 600px;
1215 1215 white-space: pre-wrap;
1216 1216 }
1217 1217
1218 1218 #content div.panel #summary p:last-child {
1219 1219 margin-bottom: 9px;
1220 1220 }
1221 1221
1222 1222 #content div.panel #summary p:first-of-type {
1223 1223 margin-top: 9px;
1224 1224 }
1225 1225
1226 1226 .metatag {
1227 1227 display: inline-block;
1228 1228 margin-right: 1px;
1229 1229 border-radius: 4px 4px 4px 4px;
1230 1230
1231 1231 border: solid 1px #9CF;
1232 1232 padding: 2px 3px 2px 3px !important;
1233 1233 background-color: #DEF;
1234 1234 }
1235 1235
1236 1236 .metatag[data-tag="dead"] {
1237 1237 background-color: #E44;
1238 1238 }
1239 1239
1240 1240 .metatag[data-tag="stale"] {
1241 1241 background-color: #EA4;
1242 1242 }
1243 1243
1244 1244 .metatag[data-tag="featured"] {
1245 1245 background-color: #AEA;
1246 1246 }
1247 1247
1248 1248 .metatag[data-tag="requires"] {
1249 1249 background-color: #9CF;
1250 1250 }
1251 1251
1252 1252 .metatag[data-tag="recommends"] {
1253 1253 background-color: #BDF;
1254 1254 }
1255 1255
1256 1256 .metatag[data-tag="lang"] {
1257 1257 background-color: #FAF474;
1258 1258 }
1259 1259
1260 1260 .metatag[data-tag="license"] {
1261 1261 border: solid 1px #9CF;
1262 1262 background-color: #DEF;
1263 1263 }
1264 1264 .metatag[data-tag="see"] {
1265 1265 border: solid 1px #CBD;
1266 1266 background-color: #EDF;
1267 1267 }
1268 1268
1269 1269 a.metatag[data-tag="license"]:hover {
1270 1270 background-color: #577632;
1271 1271 color: #FFF;
1272 1272 text-decoration: none;
1273 1273 }
1274 1274
1275 1275 #summary .desc {
1276 1276 white-space: pre;
1277 1277 width: 100%;
1278 1278 }
1279 1279
1280 1280 #summary .repo_name {
1281 1281 font-size: 1.6em;
1282 1282 font-weight: bold;
1283 1283 vertical-align: baseline;
1284 1284 clear: right
1285 1285 }
1286 1286
1287 1287 #footer {
1288 1288 clear: both;
1289 1289 overflow: hidden;
1290 1290 text-align: right;
1291 1291 margin: 0;
1292 1292 padding: 10px 20px;
1293 1293 margin: -10px 0 0;
1294 1294 background-color: #577632;
1295 1295 background-repeat: repeat-x;
1296 1296 background-image: linear-gradient(to bottom, #577632, #577632);
1297 1297 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1298 1298 border-radius: 4px 4px 4px 4px;
1299 1299 }
1300 1300
1301 1301 #footer > span {
1302 1302 color: #FFF;
1303 1303 font-weight: 700;
1304 1304 }
1305 1305
1306 1306 #footer .navbar-link {
1307 1307 color: #FFF;
1308 1308 }
1309 1309
1310 1310 #login div.panel-heading {
1311 1311 clear: both;
1312 1312 overflow: hidden;
1313 1313 position: relative;
1314 1314 background-color: #577632;
1315 1315 background-repeat: repeat-x;
1316 1316 background-image: linear-gradient(to bottom, #577632, #577632);
1317 margin: 0 auto;
1318 1317 padding: 0;
1319 1318 }
1320 1319
1321 #login div.inner .icon-lock {
1322 font-size: 80pt;
1320 #login .panel-body .icon-lock {
1321 font-size: 100px;
1323 1322 color: #DDD;
1323 position: absolute;
1324 margin-left: -20px;
1325 z-index: 1;
1324 1326 }
1325 1327
1326 1328 #login div.inner {
1327 1329 background: #FFF;
1328 1330 border-top: none;
1329 1331 border-bottom: none;
1330 1332 margin: 0 auto;
1331 1333 padding: 20px;
1332 1334 }
1333 1335
1334 1336 #login div.form div.form-horizontal div.form-group > label {
1335 1337 width: 173px;
1336 1338 float: left;
1337 1339 text-align: right;
1338 1340 margin: 2px 10px 0 0;
1339 1341 padding: 5px 0 0 5px;
1340 1342 }
1341 1343
1342 1344 #login div.form div.form-horizontal div.form-group div input {
1343 1345 background: #FFF;
1344 1346 border-top: 1px solid #b3b3b3;
1345 1347 border-left: 1px solid #b3b3b3;
1346 1348 border-right: 1px solid #eaeaea;
1347 1349 border-bottom: 1px solid #eaeaea;
1348 1350 color: #000;
1349 1351 font-size: 11px;
1350 1352 margin: 0;
1351 1353 padding: 7px 7px 6px;
1352 1354 }
1353 1355
1354 1356 #login div.form .buttons {
1355 1357 float: right;
1356 1358 }
1357 1359
1358 1360 #login div.form div.links {
1359 1361 clear: both;
1360 1362 overflow: hidden;
1361 1363 margin: 10px 0 0;
1362 1364 border-top: 1px solid #DDD;
1363 1365 padding: 10px 0 0;
1364 1366 }
1365 1367
1366 1368 .user-menu {
1367 1369 margin: 0px !important;
1368 1370 float: left;
1369 1371 }
1370 1372
1371 1373 .user-menu .container {
1372 1374 padding: 0px 4px 0px 4px;
1373 1375 margin: 0px 0px 0px 0px;
1374 1376 }
1375 1377
1376 1378 .user-menu .gravatar {
1377 1379 margin: 0px 0px 0px 0px;
1378 1380 cursor: pointer;
1379 1381 }
1380 1382 .user-menu .gravatar.enabled {
1381 1383 background-color: #FDF784 !important;
1382 1384 }
1383 1385 .user-menu .gravatar:hover {
1384 1386 background-color: #FDF784 !important;
1385 1387 }
1386 1388 #quick_login {
1387 1389 width: 300px;
1388 1390 min-height: 110px;
1389 1391 padding: 4px;
1390 1392 position: absolute;
1391 1393 right: 0;
1392 1394 background-color: #577632;
1393 1395 background-repeat: repeat-x;
1394 1396 background-image: linear-gradient(to bottom, #577632, #577632);
1395 1397
1396 1398 z-index: 999;
1397 1399 border-radius: 0px 0px 4px 4px;
1398 1400 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1399 1401
1400 1402 overflow: hidden;
1401 1403 }
1402 1404 #quick_login h4 {
1403 1405 color: #fff;
1404 1406 padding: 5px 0px 5px 14px;
1405 1407 }
1406 1408
1407 1409 #quick_login .password_forgoten {
1408 1410 padding-right: 0px;
1409 1411 padding-top: 0px;
1410 1412 text-align: left;
1411 1413 }
1412 1414
1413 1415 #quick_login .password_forgoten a {
1414 1416 font-size: 10px;
1415 1417 color: #fff;
1416 1418 padding: 0px !important;
1417 1419 line-height: 20px !important;
1418 1420 }
1419 1421
1420 1422 #quick_login .register {
1421 1423 padding-right: 10px;
1422 1424 padding-top: 5px;
1423 1425 text-align: left;
1424 1426 }
1425 1427
1426 1428 #quick_login .register a {
1427 1429 font-size: 10px;
1428 1430 color: #fff;
1429 1431 padding: 0px !important;
1430 1432 line-height: 20px !important;
1431 1433 }
1432 1434
1433 1435 #quick_login .submit {
1434 1436 margin: -20px 0 0 0px;
1435 1437 position: absolute;
1436 1438 right: 15px;
1437 1439 }
1438 1440
1439 1441 #quick_login > .pull-left {
1440 1442 width: 170px;
1441 1443 }
1442 1444 #quick_login > .pull-right {
1443 1445 width: 110px;
1444 1446 }
1445 1447 #quick_login .full_name {
1446 1448 color: #FFFFFF;
1447 1449 font-weight: bold;
1448 1450 padding: 3px 3px 3px 6px;
1449 1451 }
1450 1452 #quick_login .big_gravatar {
1451 1453 padding: 4px 0px 0px 6px;
1452 1454 }
1453 1455 #quick_login .notifications {
1454 1456 padding: 2px 0px 0px 6px;
1455 1457 color: #FFFFFF;
1456 1458 font-weight: bold;
1457 1459 line-height: 10px !important;
1458 1460 }
1459 1461 #quick_login .notifications a,
1460 1462 #quick_login .unread a {
1461 1463 color: #FFFFFF;
1462 1464 display: block;
1463 1465 padding: 0px !important;
1464 1466 }
1465 1467 #quick_login .notifications a:hover,
1466 1468 #quick_login .unread a:hover {
1467 1469 background-color: inherit !important;
1468 1470 }
1469 1471 #quick_login .email,
1470 1472 #quick_login .unread {
1471 1473 color: #FFFFFF;
1472 1474 padding: 3px 3px 3px 6px;
1473 1475 }
1474 1476 #quick_login .links .logout {
1475 1477 }
1476 1478
1477 1479 #quick_login div.form div.form-horizontal {
1478 1480 padding-top: 2px;
1479 1481 padding-left: 10px;
1480 1482 }
1481 1483
1482 1484 #quick_login div.form div.form-horizontal div.form-group {
1483 1485 padding: 5px;
1484 1486 }
1485 1487
1486 1488 #quick_login div.form div.form-horizontal div.form-group > label {
1487 1489 color: #fff;
1488 1490 padding-bottom: 3px;
1489 1491 }
1490 1492
1491 1493 #quick_login div.form div.form-horizontal div.form-group > div input {
1492 1494 width: 236px;
1493 1495 background: #FFF;
1494 1496 border-top: 1px solid #b3b3b3;
1495 1497 border-left: 1px solid #b3b3b3;
1496 1498 border-right: 1px solid #eaeaea;
1497 1499 border-bottom: 1px solid #eaeaea;
1498 1500 color: #000;
1499 1501 font-size: 11px;
1500 1502 margin: 0;
1501 1503 padding: 5px 7px 4px;
1502 1504 }
1503 1505
1504 1506 #quick_login div.form div.form-horizontal div.buttons {
1505 1507 clear: both;
1506 1508 overflow: hidden;
1507 1509 text-align: right;
1508 1510 margin: 0;
1509 1511 padding: 5px 14px 0px 5px;
1510 1512 }
1511 1513
1512 1514 #quick_login div.form div.links {
1513 1515 clear: both;
1514 1516 overflow: hidden;
1515 1517 margin: 10px 0 0;
1516 1518 padding: 0 0 2px;
1517 1519 }
1518 1520
1519 1521 #quick_login ol.links {
1520 1522 display: block;
1521 1523 font-weight: bold;
1522 1524 list-style: none outside none;
1523 1525 text-align: right;
1524 1526 }
1525 1527 #quick_login ol.links li {
1526 1528 line-height: 27px;
1527 1529 margin: 0;
1528 1530 padding: 0;
1529 1531 color: #fff;
1530 1532 display: block;
1531 1533 float: none !important;
1532 1534 }
1533 1535
1534 1536 #quick_login ol.links li a {
1535 1537 color: #fff;
1536 1538 display: block;
1537 1539 padding: 2px;
1538 1540 }
1539 1541 #quick_login ol.links li a:HOVER {
1540 1542 background-color: inherit !important;
1541 1543 }
1542 1544
1543 1545 #register div.panel-heading {
1544 1546 clear: both;
1545 1547 overflow: hidden;
1546 1548 position: relative;
1547 1549 background-color: #577632;
1548 1550 background-repeat: repeat-x;
1549 1551 background-image: linear-gradient(to bottom, #577632, #577632);
1550 margin: 0 auto;
1551 1552 padding: 0;
1552 1553 }
1553 1554
1554 1555 #register div.inner {
1555 1556 background: #FFF;
1556 1557 border-top: none;
1557 1558 border-bottom: none;
1558 1559 margin: 0 auto;
1559 1560 padding: 20px;
1560 1561 }
1561 1562
1562 1563 #register div.form div.form-horizontal div.form-group > label {
1563 1564 width: 135px;
1564 1565 float: left;
1565 1566 text-align: right;
1566 1567 margin: 2px 10px 0 0;
1567 1568 padding: 5px 0 0 5px;
1568 1569 }
1569 1570
1570 1571 #register div.form div.form-horizontal div.form-group > div input {
1571 1572 width: 300px;
1572 1573 background: #FFF;
1573 1574 border-top: 1px solid #b3b3b3;
1574 1575 border-left: 1px solid #b3b3b3;
1575 1576 border-right: 1px solid #eaeaea;
1576 1577 border-bottom: 1px solid #eaeaea;
1577 1578 color: #000;
1578 1579 font-size: 11px;
1579 1580 margin: 0;
1580 1581 padding: 7px 7px 6px;
1581 1582 }
1582 1583
1583 1584 #register div.form div.form-horizontal div.buttons {
1584 1585 clear: both;
1585 1586 overflow: hidden;
1586 1587 border-top: 1px solid #DDD;
1587 1588 text-align: left;
1588 1589 margin: 0;
1589 1590 padding: 10px 0 0 150px;
1590 1591 }
1591 1592
1592 1593 #register div.form div.activation_msg {
1593 1594 padding-top: 4px;
1594 1595 padding-bottom: 4px;
1595 1596 }
1596 1597
1597 1598 #journal {
1598 1599 margin-left: 20px;
1599 1600 }
1600 1601
1601 1602 #journal .journal_day {
1602 1603 font-size: 20px;
1603 1604 padding: 10px 0px;
1604 1605 border-bottom: 2px solid #DDD;
1605 1606 margin-left: 10px;
1606 1607 margin-right: 10px;
1607 1608 }
1608 1609
1609 1610 #journal .journal_container {
1610 1611 clear: both;
1611 1612 }
1612 1613
1613 1614 #journal .journal_action_container {
1614 1615 padding-left: 18px;
1615 1616 }
1616 1617
1617 1618 #journal .journal_user {
1618 1619 color: #747474;
1619 1620 font-size: 14px;
1620 1621 font-weight: bold;
1621 1622 height: 30px;
1622 1623 }
1623 1624
1624 1625 #journal .journal_user.deleted {
1625 1626 color: #747474;
1626 1627 font-size: 14px;
1627 1628 font-weight: normal;
1628 1629 height: 30px;
1629 1630 font-style: italic;
1630 1631 }
1631 1632
1632 1633
1633 1634 #journal .journal_icon {
1634 1635 clear: both;
1635 1636 float: left;
1636 1637 padding-right: 4px;
1637 1638 padding-top: 3px;
1638 1639 }
1639 1640
1640 1641 #journal .journal_action {
1641 1642 padding-top: 4px;
1642 1643 min-height: 2px;
1643 1644 float: left
1644 1645 }
1645 1646
1646 1647 #journal .journal_action_params {
1647 1648 clear: left;
1648 1649 padding-left: 22px;
1649 1650 }
1650 1651
1651 1652 #journal .journal_repo {
1652 1653 float: left;
1653 1654 margin-left: 6px;
1654 1655 padding-top: 3px;
1655 1656 }
1656 1657
1657 1658 #journal .date {
1658 1659 clear: both;
1659 1660 color: #777777;
1660 1661 font-size: 11px;
1661 1662 padding-left: 22px;
1662 1663 }
1663 1664
1664 1665 #journal .journal_repo .journal_repo_name {
1665 1666 font-weight: bold;
1666 1667 font-size: 1.1em;
1667 1668 }
1668 1669
1669 1670 #journal .compare_view {
1670 1671 padding: 5px 0px 5px 0px;
1671 1672 width: 95px;
1672 1673 }
1673 1674
1674 1675 .trending_language_tbl, .trending_language_tbl td {
1675 1676 border: 0 !important;
1676 1677 margin: 0 !important;
1677 1678 padding: 0 !important;
1678 1679 }
1679 1680
1680 1681 .trending_language_tbl, .trending_language_tbl tr {
1681 1682 border-spacing: 1px;
1682 1683 }
1683 1684
1684 1685 #lang_stats .progress-bar {
1685 1686 background-color: #577632;
1686 1687 color: #FFF;
1687 1688 display: block;
1688 1689 min-width: 20px;
1689 1690 text-decoration: none;
1690 1691 height: 12px;
1691 1692 margin-bottom: 0px;
1692 1693 margin-left: 5px;
1693 1694 white-space: pre;
1694 1695 padding: 3px;
1695 1696 border-top-right-radius: 8px;
1696 1697 border-bottom-right-radius: 8px;
1697 1698 }
1698 1699
1699 1700 #lang_stats table td {
1700 1701 border-bottom: none !important;
1701 1702 padding: 1px 0 !important;
1702 1703 }
1703 1704
1704 1705 h3.files_location {
1705 1706 font-size: 1.8em;
1706 1707 font-weight: 700;
1707 1708 border-bottom: none !important;
1708 1709 margin: 10px 0 !important;
1709 1710 }
1710 1711
1711 1712 #files_data dl dt {
1712 1713 float: left;
1713 1714 width: 60px;
1714 1715 margin: 0 !important;
1715 1716 padding: 5px;
1716 1717 }
1717 1718
1718 1719 #files_data dl dd {
1719 1720 margin: 0 !important;
1720 1721 padding: 5px !important;
1721 1722 }
1722 1723
1723 1724 #files_data .codeblock #editor_container .error-message {
1724 1725 color: red;
1725 1726 padding: 10px 10px 10px 26px
1726 1727 }
1727 1728
1728 1729 .file_history {
1729 1730 padding-top: 10px;
1730 1731 font-size: 16px;
1731 1732 }
1732 1733 .file_author {
1733 1734 float: left;
1734 1735 }
1735 1736
1736 1737 .file_author .item {
1737 1738 float: left;
1738 1739 padding: 5px;
1739 1740 color: #888;
1740 1741 }
1741 1742
1742 1743 .changeset_id {
1743 1744 color: #666666;
1744 1745 margin-right: -3px;
1745 1746 }
1746 1747
1747 1748 .changeset-logical-index {
1748 1749 color: #666666;
1749 1750 font-style: italic;
1750 1751 font-size: 85%;
1751 1752 padding-right: 0.5em;
1752 1753 text-align: right;
1753 1754 }
1754 1755
1755 1756 #changeset_content {
1756 1757 border-left: 1px solid #CCC;
1757 1758 border-right: 1px solid #CCC;
1758 1759 border-bottom: 1px solid #CCC;
1759 1760 padding: 5px;
1760 1761 }
1761 1762
1762 1763 #changeset_compare_view_content {
1763 1764 border: 1px solid #CCC;
1764 1765 padding: 5px;
1765 1766 }
1766 1767
1767 1768 #changeset_content .container {
1768 1769 font-size: 1.2em;
1769 1770 overflow: hidden;
1770 1771 }
1771 1772
1772 1773 #changeset_compare_view_content .compare_view_commits {
1773 1774 width: auto !important;
1774 1775 }
1775 1776
1776 1777 #changeset_compare_view_content .compare_view_commits td {
1777 1778 padding: 0px 0px 0px 12px !important;
1778 1779 }
1779 1780
1780 1781 #changeset_content .container .right {
1781 1782 float: right;
1782 1783 width: 20%;
1783 1784 text-align: right;
1784 1785 }
1785 1786
1786 1787 #changeset_content .container .message {
1787 1788 white-space: pre-wrap;
1788 1789 }
1789 1790 #changeset_content .container .message a:hover {
1790 1791 text-decoration: none;
1791 1792 }
1792 1793 .cs_files .cur_cs {
1793 1794 margin: 10px 2px;
1794 1795 font-weight: bold;
1795 1796 }
1796 1797
1797 1798 .cs_files .node {
1798 1799 float: left;
1799 1800 }
1800 1801
1801 1802 .cs_files .changes {
1802 1803 float: right;
1803 1804 color: #577632;
1804 1805 }
1805 1806
1806 1807 .cs_files .changes .added {
1807 1808 background-color: #BBFFBB;
1808 1809 float: left;
1809 1810 text-align: center;
1810 1811 font-size: 9px;
1811 1812 padding: 2px 0px 2px 0px;
1812 1813 }
1813 1814
1814 1815 .cs_files .changes .deleted {
1815 1816 background-color: #FF8888;
1816 1817 float: left;
1817 1818 text-align: center;
1818 1819 font-size: 9px;
1819 1820 padding: 2px 0px 2px 0px;
1820 1821 }
1821 1822 /*new binary
1822 1823 NEW_FILENODE = 1
1823 1824 DEL_FILENODE = 2
1824 1825 MOD_FILENODE = 3
1825 1826 RENAMED_FILENODE = 4
1826 1827 CHMOD_FILENODE = 5
1827 1828 BIN_FILENODE = 6
1828 1829 */
1829 1830 .cs_files .changes .bin {
1830 1831 background-color: #BBFFBB;
1831 1832 float: left;
1832 1833 text-align: center;
1833 1834 font-size: 9px;
1834 1835 padding: 2px 0px 2px 0px;
1835 1836 }
1836 1837 .cs_files .changes .bin.bin1 {
1837 1838 background-color: #BBFFBB;
1838 1839 }
1839 1840
1840 1841 /*deleted binary*/
1841 1842 .cs_files .changes .bin.bin2 {
1842 1843 background-color: #FF8888;
1843 1844 }
1844 1845
1845 1846 /*mod binary*/
1846 1847 .cs_files .changes .bin.bin3 {
1847 1848 background-color: #DDDDDD;
1848 1849 }
1849 1850
1850 1851 /*rename file*/
1851 1852 .cs_files .changes .bin.bin4 {
1852 1853 background-color: #6D99FF;
1853 1854 }
1854 1855
1855 1856 /*rename file*/
1856 1857 .cs_files .changes .bin.bin4 {
1857 1858 background-color: #6D99FF;
1858 1859 }
1859 1860
1860 1861 /*chmod file*/
1861 1862 .cs_files .changes .bin.bin5 {
1862 1863 background-color: #6D99FF;
1863 1864 }
1864 1865
1865 1866 .cs_files .cs_added,
1866 1867 .cs_files .cs_A {
1867 1868 height: 16px;
1868 1869 margin-top: 7px;
1869 1870 text-align: left;
1870 1871 }
1871 1872
1872 1873 .cs_files .cs_changed,
1873 1874 .cs_files .cs_M {
1874 1875 height: 16px;
1875 1876 margin-top: 7px;
1876 1877 text-align: left;
1877 1878 }
1878 1879
1879 1880 .cs_files .cs_removed,
1880 1881 .cs_files .cs_D {
1881 1882 height: 16px;
1882 1883 margin-top: 7px;
1883 1884 text-align: left;
1884 1885 }
1885 1886
1886 1887 .cs_files .cs_renamed,
1887 1888 .cs_files .cs_R {
1888 1889 height: 16px;
1889 1890 margin-top: 7px;
1890 1891 text-align: left;
1891 1892 }
1892 1893
1893 1894 #graph {
1894 1895 position: relative;
1895 1896 overflow: hidden;
1896 1897 }
1897 1898
1898 1899 #graph_nodes {
1899 1900 position: absolute;
1900 1901 width: 100px;
1901 1902 }
1902 1903
1903 1904 #graph_content,
1904 1905 #graph .info_box,
1905 1906 #graph .container_header {
1906 1907 margin-left: 100px;
1907 1908 }
1908 1909
1909 1910 #graph_content {
1910 1911 position: relative;
1911 1912 }
1912 1913
1913 1914 #graph .container_header {
1914 1915 padding: 10px;
1915 1916 height: 25px;
1916 1917 }
1917 1918
1918 1919 #graph_content #rev_range_container {
1919 1920 float: left;
1920 1921 margin: 0px 0px 0px 3px;
1921 1922 }
1922 1923
1923 1924 #graph_content #rev_range_clear {
1924 1925 float: left;
1925 1926 margin: 0px 0px 0px 3px;
1926 1927 }
1927 1928
1928 1929 #graph_content #changesets {
1929 1930 table-layout: fixed;
1930 1931 border-collapse: collapse;
1931 1932 border-left: none;
1932 1933 border-right: none;
1933 1934 border-color: #cdcdcd;
1934 1935 }
1935 1936
1936 1937 #updaterevs-table tr.mergerow,
1937 1938 #graph_content_pr tr.mergerow,
1938 1939 #shortlog_data tr.mergerow,
1939 1940 #graph_content #changesets tr.out-of-range,
1940 1941 #graph_content #changesets tr.mergerow {
1941 1942 opacity: 0.6;
1942 1943 }
1943 1944
1944 1945 #graph_content #changesets td {
1945 1946 overflow: hidden;
1946 1947 text-overflow: ellipsis;
1947 1948 white-space: nowrap;
1948 1949 height: 31px;
1949 1950 border-color: #cdcdcd;
1950 1951 text-align: left;
1951 1952 }
1952 1953
1953 1954 #graph_content .container .checkbox {
1954 1955 width: 14px;
1955 1956 font-size: 0.85em;
1956 1957 }
1957 1958
1958 1959 #graph_content .container .status {
1959 1960 width: 14px;
1960 1961 font-size: 0.85em;
1961 1962 }
1962 1963
1963 1964 #graph_content .container .author {
1964 1965 width: 105px;
1965 1966 }
1966 1967
1967 1968 #graph_content .container .hash {
1968 1969 width: 100px;
1969 1970 font-size: 0.85em;
1970 1971 }
1971 1972
1972 1973 #graph_content #changesets .container .date {
1973 1974 width: 76px;
1974 1975 color: #666;
1975 1976 font-size: 10px;
1976 1977 }
1977 1978
1978 1979 #graph_content_pr .compare_view_commits .expand_commit,
1979 1980 #graph_content .container .expand_commit {
1980 1981 width: 24px;
1981 1982 cursor: pointer;
1982 1983 }
1983 1984
1984 1985 #graph_content #changesets .container .right {
1985 1986 width: 120px;
1986 1987 padding-right: 0px;
1987 1988 overflow: visible;
1988 1989 position: relative;
1989 1990 }
1990 1991
1991 1992 #graph_content .container .mid {
1992 1993 padding: 0;
1993 1994 }
1994 1995
1995 1996 #graph_content .log-container {
1996 1997 position: relative;
1997 1998 }
1998 1999
1999 2000 #graph_content .container #singlerange,
2000 2001 #graph_content .container .changeset_range {
2001 2002 float: left;
2002 2003 margin: 6px 3px;
2003 2004 }
2004 2005
2005 2006 #graph_content .container .author img {
2006 2007 vertical-align: middle;
2007 2008 }
2008 2009
2009 2010 #graph_content .container .author .user {
2010 2011 color: #444444;
2011 2012 }
2012 2013
2013 2014 #graph_content .container .mid .message {
2014 2015 white-space: pre-wrap;
2015 2016 padding: 0;
2016 2017 overflow: hidden;
2017 2018 height: 1.1em;
2018 2019 }
2019 2020
2020 2021 #graph_content_pr .compare_view_commits .message {
2021 2022 padding: 0 !important;
2022 2023 height: 1.1em;
2023 2024 }
2024 2025
2025 2026 #graph_content .container .mid .message.expanded,
2026 2027 #graph_content_pr .compare_view_commits .message.expanded {
2027 2028 height: auto;
2028 2029 margin: 8px 0px 8px 0px;
2029 2030 overflow: initial;
2030 2031 }
2031 2032
2032 2033 #graph_content .container .extra-container {
2033 2034 display: block;
2034 2035 position: absolute;
2035 2036 top: -15px;
2036 2037 right: 0;
2037 2038 padding-left: 5px;
2038 2039 background: #FFFFFF;
2039 2040 height: 41px;
2040 2041 }
2041 2042
2042 2043 #pull_request_overview .comments-container,
2043 2044 #changeset_compare_view_content .comments-container,
2044 2045 #graph_content .comments-container,
2045 2046 #shortlog_data .comments-container,
2046 2047 #graph_content .logtags {
2047 2048 display: block;
2048 2049 float: left;
2049 2050 overflow: hidden;
2050 2051 padding: 0;
2051 2052 margin: 0;
2052 2053 white-space: nowrap;
2053 2054 }
2054 2055
2055 2056 #graph_content .comments-container {
2056 2057 margin: 0.8em 0;
2057 2058 margin-right: 0.5em;
2058 2059 }
2059 2060
2060 2061 #graph_content .tagcontainer {
2061 2062 width: 80px;
2062 2063 position: relative;
2063 2064 float: right;
2064 2065 height: 100%;
2065 2066 top: 7px;
2066 2067 margin-left: 0.5em;
2067 2068 }
2068 2069
2069 2070 #graph_content .logtags {
2070 2071 min-width: 80px;
2071 2072 height: 1.1em;
2072 2073 position: absolute;
2073 2074 left: 0px;
2074 2075 width: auto;
2075 2076 top: 0px;
2076 2077 }
2077 2078
2078 2079 #graph_content .logtags.tags {
2079 2080 top: 14px;
2080 2081 }
2081 2082
2082 2083 #graph_content .logtags:hover {
2083 2084 overflow: visible;
2084 2085 position: absolute;
2085 2086 width: auto;
2086 2087 right: 0;
2087 2088 left: initial;
2088 2089 }
2089 2090
2090 2091 #graph_content .logtags .booktag,
2091 2092 #graph_content .logtags .tagtag {
2092 2093 float: left;
2093 2094 line-height: 1em;
2094 2095 margin-bottom: 1px;
2095 2096 margin-right: 1px;
2096 2097 padding: 1px 3px;
2097 2098 font-size: 10px;
2098 2099 }
2099 2100
2100 2101 #graph_content .container .mid .message a:hover {
2101 2102 text-decoration: none;
2102 2103 }
2103 2104
2104 2105 #compare_branches + div.panel-body .revision-link,
2105 2106 #compare_tags + div.panel-body .revision-link,
2106 2107 #compare_bookmarks + div.panel-body .revision-link,
2107 2108 div.panel-body #files_data .revision-link,
2108 2109 #repos_list_wrap .revision-link,
2109 2110 #shortlog_data .revision-link {
2110 2111 font-weight: normal !important;
2111 2112 font-family: monospace;
2112 2113 font-size: 12px;
2113 2114 color: #577632;
2114 2115 }
2115 2116
2116 2117 .revision-link {
2117 2118 color: #3F6F9F;
2118 2119 font-weight: bold !important;
2119 2120 }
2120 2121
2121 2122 .issue-tracker-link {
2122 2123 color: #3F6F9F;
2123 2124 font-weight: bold !important;
2124 2125 }
2125 2126
2126 2127 .changeset-status-container {
2127 2128 padding-right: 5px;
2128 2129 margin-top: 1px;
2129 2130 float: right;
2130 2131 height: 14px;
2131 2132 }
2132 2133 .code-header .changeset-status-container {
2133 2134 float: left;
2134 2135 padding: 2px 0px 0px 2px;
2135 2136 }
2136 2137 .code-header .changeset-status-container .changeset-status-lbl {
2137 2138 float: left;
2138 2139 padding: 0px 4px 0px 0px;
2139 2140 }
2140 2141 .changeset-status-container div.changeset-status-ico {
2141 2142 float: left;
2142 2143 }
2143 2144 .code-header .changeset-status-container .changeset-status-ico,
2144 2145 .container .changeset-status-ico {
2145 2146 float: left;
2146 2147 }
2147 2148
2148 2149 /* changeset statuses (must be the same name as the status) */
2149 2150 .changeset-status-not_reviewed {
2150 2151 color: #bababa;
2151 2152 }
2152 2153 .changeset-status-approved {
2153 2154 color: #81ba51;
2154 2155 }
2155 2156 .changeset-status-rejected {
2156 2157 color: #d06060;
2157 2158 }
2158 2159 .changeset-status-under_review {
2159 2160 color: #ffc71e;
2160 2161 }
2161 2162
2162 2163 #graph_content .comments-cnt {
2163 2164 color: rgb(136, 136, 136);
2164 2165 padding: 5px 0;
2165 2166 }
2166 2167
2167 2168 #shortlog_data .comments-cnt {
2168 2169 color: rgb(136, 136, 136);
2169 2170 padding: 3px 0;
2170 2171 }
2171 2172
2172 2173 .right .changes {
2173 2174 clear: both;
2174 2175 }
2175 2176
2176 2177 .right .changes .changed_total {
2177 2178 display: block;
2178 2179 float: right;
2179 2180 text-align: center;
2180 2181 min-width: 45px;
2181 2182 cursor: pointer;
2182 2183 color: #444444;
2183 2184 background: #FEA;
2184 2185 border-radius: 0px 0px 0px 6px;
2185 2186 padding: 1px;
2186 2187 }
2187 2188
2188 2189 .right .changes .added,
2189 2190 .changed, .removed {
2190 2191 display: block;
2191 2192 padding: 1px;
2192 2193 color: #444444;
2193 2194 float: right;
2194 2195 text-align: center;
2195 2196 min-width: 15px;
2196 2197 }
2197 2198
2198 2199 .right .changes .added {
2199 2200 background: #CFC;
2200 2201 }
2201 2202
2202 2203 .right .changes .changed {
2203 2204 background: #FEA;
2204 2205 }
2205 2206
2206 2207 .right .changes .removed {
2207 2208 background: #FAA;
2208 2209 }
2209 2210
2210 2211 .right .mergetag,
2211 2212 .right .merge {
2212 2213 padding: 1px 3px 1px 3px;
2213 2214 background-color: #fca062;
2214 2215 font-size: 10px;
2215 2216 color: #ffffff;
2216 2217 text-transform: uppercase;
2217 2218 white-space: nowrap;
2218 2219 border-radius: 3px;
2219 2220 margin-right: 2px;
2220 2221 }
2221 2222
2222 2223 .right .parent {
2223 2224 color: #666666;
2224 2225 clear: both;
2225 2226 }
2226 2227 .right .logtags {
2227 2228 line-height: 2.2em;
2228 2229 }
2229 2230 .phasetag, .bumpedtag, .divergenttag, .extincttag, .unstabletag, .repotag, .branchtag, .logtags .tagtag, .logtags .booktag {
2230 2231 margin: 0px 2px;
2231 2232 }
2232 2233
2233 2234 .phasetag,
2234 2235 .bumpedtag,
2235 2236 .divergenttag,
2236 2237 .extincttag,
2237 2238 .unstabletag,
2238 2239 .repotag,
2239 2240 .branchtag,
2240 2241 .tagtag,
2241 2242 .booktag,
2242 2243 .spantag {
2243 2244 padding: 1px 3px 1px 3px;
2244 2245 font-size: 10px;
2245 2246 color: #577632;
2246 2247 white-space: nowrap;
2247 2248 border-radius: 4px;
2248 2249 border: 1px solid #d9e8f8;
2249 2250 line-height: 1.5em;
2250 2251 }
2251 2252
2252 2253 #graph_content .phasetag,
2253 2254 #graph_content .bumpedtag,
2254 2255 #graph_content .divergenttag,
2255 2256 #graph_content .extincttag,
2256 2257 #graph_content .unstabletag,
2257 2258 #graph_content .branchtag,
2258 2259 #graph_content .tagtag,
2259 2260 #graph_content .booktag {
2260 2261 margin: 1.1em 0;
2261 2262 margin-right: 0.5em;
2262 2263 }
2263 2264
2264 2265 .phasetag,
2265 2266 .bumpedtag,
2266 2267 .divergenttag,
2267 2268 .extincttag,
2268 2269 .unstabletag,
2269 2270 .repotag,
2270 2271 .branchtag,
2271 2272 .tagtag,
2272 2273 .booktag {
2273 2274 float: left;
2274 2275 display: inline-block;
2275 2276 }
2276 2277
2277 2278 .right .logtags .phasetag,
2278 2279 .right .logtags .bumpedtag,
2279 2280 .right .logtags .divergenttag,
2280 2281 .right .logtags .extincttag,
2281 2282 .right .logtags .unstabletag,
2282 2283 .right .logtags .branchtag,
2283 2284 .right .logtags .tagtag,
2284 2285 .right .logtags .booktag,
2285 2286 .right .mergetag,
2286 2287 .right .merge {
2287 2288 float: right;
2288 2289 line-height: 1em;
2289 2290 margin: 1px 1px !important;
2290 2291 display: block;
2291 2292 }
2292 2293
2293 2294 .repotag {
2294 2295 border-color: #56A546;
2295 2296 color: #46A546;
2296 2297 font-size: 8px;
2297 2298 text-transform: uppercase;
2298 2299 }
2299 2300
2300 2301 #context-bar .repotag,
2301 2302 .repo-icons .repotag {
2302 2303 border-color: white;
2303 2304 color: white;
2304 2305 margin-top: 3px;
2305 2306 }
2306 2307
2307 2308 .repo-icons .repotag {
2308 2309 margin-top: 0px;
2309 2310 padding-top: 0px;
2310 2311 padding-bottom: 0px;
2311 2312 }
2312 2313
2313 2314 .booktag {
2314 2315 border-color: #46A546;
2315 2316 color: #46A546;
2316 2317 }
2317 2318
2318 2319 .tagtag {
2319 2320 border-color: #62cffc;
2320 2321 color: #62cffc;
2321 2322 }
2322 2323
2323 2324 .bumpedtag,
2324 2325 .divergenttag,
2325 2326 .extincttag,
2326 2327 .unstabletag {
2327 2328 background-color: #f00;
2328 2329 border-color: #600;
2329 2330 color: #fff;
2330 2331 }
2331 2332
2332 2333 .phasetag {
2333 2334 border-color: #1F14CE;
2334 2335 color: #1F14CE;
2335 2336 }
2336 2337
2337 2338 .logtags .branchtag a:hover,
2338 2339 .logtags .branchtag a,
2339 2340 .branchtag a,
2340 2341 .branchtag a:hover {
2341 2342 text-decoration: none;
2342 2343 color: inherit;
2343 2344 }
2344 2345 .logtags .tagtag {
2345 2346 padding: 1px 3px 1px 3px;
2346 2347 background-color: #62cffc;
2347 2348 font-size: 10px;
2348 2349 color: #ffffff;
2349 2350 white-space: nowrap;
2350 2351 border-radius: 3px;
2351 2352 }
2352 2353
2353 2354 .tagtag a,
2354 2355 .tagtag a:hover,
2355 2356 .logtags .tagtag a,
2356 2357 .logtags .tagtag a:hover {
2357 2358 text-decoration: none;
2358 2359 color: inherit;
2359 2360 }
2360 2361 .logbooks .booktag,
2361 2362 .logbooks .booktag,
2362 2363 .logtags .booktag,
2363 2364 .logtags .booktag {
2364 2365 padding: 1px 3px 1px 3px;
2365 2366 background-color: #46A546;
2366 2367 font-size: 10px;
2367 2368 color: #ffffff;
2368 2369 white-space: nowrap;
2369 2370 border-radius: 3px;
2370 2371 }
2371 2372 .logbooks .booktag,
2372 2373 .logbooks .booktag a,
2373 2374 .right .logtags .booktag,
2374 2375 .logtags .booktag a {
2375 2376 color: #ffffff;
2376 2377 }
2377 2378
2378 2379 .logbooks .booktag,
2379 2380 .logbooks .booktag a:hover,
2380 2381 .logtags .booktag,
2381 2382 .logtags .booktag a:hover,
2382 2383 .booktag a,
2383 2384 .booktag a:hover {
2384 2385 text-decoration: none;
2385 2386 color: inherit;
2386 2387 }
2387 2388 div.browserblock {
2388 2389 overflow: hidden;
2389 2390 border: 1px solid #ccc;
2390 2391 background: #f8f8f8;
2391 2392 font-size: 100%;
2392 2393 line-height: 125%;
2393 2394 padding: 0;
2394 2395 border-radius: 6px 6px 0px 0px;
2395 2396 }
2396 2397
2397 2398 div.browserblock .browser-header {
2398 2399 background: #FFF;
2399 2400 padding: 10px 0px 15px 0px;
2400 2401 width: 100%;
2401 2402 }
2402 2403
2403 2404 div.browserblock .browser-nav {
2404 2405 float: left
2405 2406 }
2406 2407
2407 2408 div.browserblock .browser-branch {
2408 2409 float: left;
2409 2410 }
2410 2411
2411 2412 div.browserblock .browser-branch label {
2412 2413 color: #4A4A4A;
2413 2414 vertical-align: text-top;
2414 2415 padding-right: 2px;
2415 2416 }
2416 2417
2417 2418 div.browserblock .browser-header span {
2418 2419 margin-left: 5px;
2419 2420 font-weight: 700;
2420 2421 }
2421 2422
2422 2423 div.browserblock .browser-search {
2423 2424 clear: both;
2424 2425 padding: 8px 8px 0px 5px;
2425 2426 height: 20px;
2426 2427 }
2427 2428
2428 2429 div.browserblock #node_filter_box {
2429 2430 }
2430 2431
2431 2432 div.browserblock .search_activate {
2432 2433 float: left
2433 2434 }
2434 2435
2435 2436 div.browserblock .add_node {
2436 2437 float: left;
2437 2438 padding-left: 5px;
2438 2439 }
2439 2440
2440 2441 div.browserblock .search_activate a:hover,
2441 2442 div.browserblock .add_node a:hover {
2442 2443 text-decoration: none !important;
2443 2444 }
2444 2445
2445 2446 div.browserblock .browser-body {
2446 2447 background: #EEE;
2447 2448 border-top: 1px solid #CCC;
2448 2449 }
2449 2450
2450 2451 table.code-browser {
2451 2452 border-collapse: collapse;
2452 2453 width: 100%;
2453 2454 }
2454 2455
2455 2456 table.code-browser tr {
2456 2457 margin: 3px;
2457 2458 }
2458 2459
2459 2460 table.code-browser thead th {
2460 2461 background-color: #EEE;
2461 2462 height: 20px;
2462 2463 font-size: 1.1em;
2463 2464 font-weight: 700;
2464 2465 text-align: left;
2465 2466 padding-left: 10px;
2466 2467 }
2467 2468
2468 2469 table.code-browser tbody td {
2469 2470 padding-left: 10px;
2470 2471 height: 20px;
2471 2472 }
2472 2473
2473 2474 table.code-browser .browser-file {
2474 2475 height: 16px;
2475 2476 padding-left: 5px;
2476 2477 text-align: left;
2477 2478 }
2478 2479 .diffblock .changeset_header {
2479 2480 height: 16px;
2480 2481 }
2481 2482 .diffblock .changeset_file {
2482 2483 float: left;
2483 2484 }
2484 2485 .diffblock .diff-menu-wrapper {
2485 2486 float: left;
2486 2487 }
2487 2488
2488 2489 .diffblock .diff-menu {
2489 2490 position: absolute;
2490 2491 background: none repeat scroll 0 0 #FFFFFF;
2491 2492 border-color: #577632 #666666 #666666;
2492 2493 border-right: 1px solid #666666;
2493 2494 border-style: solid solid solid;
2494 2495 border-width: 1px;
2495 2496 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
2496 2497 margin-top: 5px;
2497 2498 margin-left: 1px;
2498 2499
2499 2500 }
2500 2501 .diffblock .diff-actions {
2501 2502 float: left;
2502 2503 }
2503 2504 .diffblock .diff-actions span.no-file,
2504 2505 .diffblock .diff-actions span.arrow {
2505 2506 opacity: 0.5;
2506 2507 }
2507 2508 .diffblock .diff-actions span.arrow {
2508 2509 margin: 0 -3px;
2509 2510 }
2510 2511 .diffblock .diff-actions a i {
2511 2512 margin: 0 2px;
2512 2513 }
2513 2514 .diffblock.twoway {
2514 2515 overflow: visible;
2515 2516 }
2516 2517 .diffblock.twoway .diff-actions {
2517 2518 padding-top: 0;
2518 2519 }
2519 2520 .diffblock.twoway .diff-actions label input {
2520 2521 margin: -5px 5px 0 10px;
2521 2522 position: relative;
2522 2523 top: 3px;
2523 2524 }
2524 2525 .diffblock .diff-menu ul li {
2525 2526 padding: 0px 0px 0px 0px !important;
2526 2527 }
2527 2528 .diffblock .diff-menu ul li a {
2528 2529 display: block;
2529 2530 padding: 3px 8px 3px 8px !important;
2530 2531 }
2531 2532 .diffblock .diff-menu ul li a:hover {
2532 2533 text-decoration: none;
2533 2534 background-color: #EEEEEE;
2534 2535 }
2535 2536 table.code-browser .browser-dir {
2536 2537 height: 16px;
2537 2538 padding-left: 5px;
2538 2539 text-align: left;
2539 2540 }
2540 2541
2541 2542 table.code-browser .submodule-dir {
2542 2543 height: 16px;
2543 2544 padding-left: 5px;
2544 2545 text-align: left;
2545 2546 }
2546 2547
2547 2548 /* add some padding to the right of the file, folder, or submodule icon and
2548 2549 before the text */
2549 2550 table.code-browser i[class^='icon-'] {
2550 2551 padding-right: .3em;
2551 2552 }
2552 2553
2553 2554 .panel .search {
2554 2555 clear: both;
2555 2556 overflow: hidden;
2556 2557 margin: 0;
2557 2558 padding: 0 20px 10px;
2558 2559 }
2559 2560
2560 2561 .panel .search div.search_path {
2561 2562 background: none repeat scroll 0 0 #EEE;
2562 2563 border: 1px solid #CCC;
2563 2564 color: blue;
2564 2565 margin-bottom: 10px;
2565 2566 padding: 10px 0;
2566 2567 }
2567 2568
2568 2569 .panel .search div.search_path div.link {
2569 2570 font-weight: 700;
2570 2571 margin-left: 25px;
2571 2572 }
2572 2573
2573 2574 .panel .search div.search_path div.link a {
2574 2575 color: #577632;
2575 2576 cursor: pointer;
2576 2577 text-decoration: none;
2577 2578 }
2578 2579
2579 2580 #path_unlock {
2580 2581 color: red;
2581 2582 font-size: 1.2em;
2582 2583 padding-left: 4px;
2583 2584 }
2584 2585
2585 2586 .info_box span {
2586 2587 margin-left: 3px;
2587 2588 margin-right: 3px;
2588 2589 }
2589 2590
2590 2591 .info_box .rev {
2591 2592 color: #577632;
2592 2593 font-size: 1.6em;
2593 2594 font-weight: bold;
2594 2595 vertical-align: sub;
2595 2596 }
2596 2597
2597 2598 .info_box input#at_rev,
2598 2599 .info_box input#size {
2599 2600 background: #FFF;
2600 2601 border-top: 1px solid #b3b3b3;
2601 2602 border-left: 1px solid #b3b3b3;
2602 2603 border-right: 1px solid #eaeaea;
2603 2604 border-bottom: 1px solid #eaeaea;
2604 2605 color: #000;
2605 2606 font-size: 12px;
2606 2607 margin: 0;
2607 2608 padding: 1px 5px 1px;
2608 2609 }
2609 2610
2610 2611 .info_box input#view {
2611 2612 text-align: center;
2612 2613 padding: 4px 3px 2px 2px;
2613 2614 }
2614 2615
2615 2616 .info_box_elem {
2616 2617 display: inline-block;
2617 2618 padding: 0 2px;
2618 2619 }
2619 2620
2620 2621 .yui-overlay, .yui-panel-container {
2621 2622 visibility: hidden;
2622 2623 position: absolute;
2623 2624 z-index: 2;
2624 2625 }
2625 2626
2626 2627 #tip-box {
2627 2628 position: absolute;
2628 2629
2629 2630 background-color: #FFF;
2630 2631 border: 2px solid #577632;
2631 2632 font: 100% sans-serif;
2632 2633 width: auto;
2633 2634 opacity: 1;
2634 2635 padding: 8px;
2635 2636
2636 2637 white-space: pre-wrap;
2637 2638 border-radius: 8px 8px 8px 8px;
2638 2639 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2639 2640 z-index: 100000;
2640 2641 }
2641 2642
2642 2643 .hl-tip-box {
2643 2644 z-index: 1;
2644 2645 position: absolute;
2645 2646 color: #666;
2646 2647 background-color: #FFF;
2647 2648 border: 2px solid #577632;
2648 2649 font: 100% sans-serif;
2649 2650 width: auto;
2650 2651 opacity: 1;
2651 2652 padding: 8px;
2652 2653 white-space: pre-wrap;
2653 2654 border-radius: 8px 8px 8px 8px;
2654 2655 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2655 2656 }
2656 2657
2657 2658
2658 2659 .mentions-container {
2659 2660 width: 90% !important;
2660 2661 }
2661 2662 .mentions-container .yui-ac-content {
2662 2663 width: 100% !important;
2663 2664 }
2664 2665
2665 2666 .ac {
2666 2667 vertical-align: top;
2667 2668 }
2668 2669
2669 2670 .ac .yui-ac {
2670 2671 position: inherit;
2671 2672 font-size: 100%;
2672 2673 }
2673 2674
2674 2675 .ac .perm_ac {
2675 2676 width: 20em;
2676 2677 }
2677 2678
2678 2679 .ac .yui-ac-input {
2679 2680 width: 100%;
2680 2681 }
2681 2682
2682 2683 .ac .yui-ac-container {
2683 2684 position: absolute;
2684 2685 top: 1.6em;
2685 2686 width: auto;
2686 2687 }
2687 2688
2688 2689 .ac .yui-ac-content {
2689 2690 position: absolute;
2690 2691 border: 1px solid gray;
2691 2692 background: #fff;
2692 2693 z-index: 9050;
2693 2694 }
2694 2695
2695 2696 .ac .yui-ac-shadow {
2696 2697 position: absolute;
2697 2698 width: 100%;
2698 2699 background: #000;
2699 2700 opacity: .10;
2700 2701 z-index: 9049;
2701 2702 margin: .3em;
2702 2703 }
2703 2704
2704 2705 .ac .yui-ac-content ul {
2705 2706 width: 100%;
2706 2707 margin: 0;
2707 2708 padding: 0;
2708 2709 z-index: 9050;
2709 2710 }
2710 2711
2711 2712 .ac .yui-ac-content li {
2712 2713 cursor: default;
2713 2714 white-space: nowrap;
2714 2715 margin: 0;
2715 2716 padding: 2px 5px;
2716 2717 height: 18px;
2717 2718 z-index: 9050;
2718 2719 display: block;
2719 2720 width: auto !important;
2720 2721 }
2721 2722
2722 2723 .ac .yui-ac-content li .ac-container-wrap {
2723 2724 width: auto;
2724 2725 }
2725 2726
2726 2727 .ac .yui-ac-content li.yui-ac-prehighlight {
2727 2728 background: #B3D4FF;
2728 2729 z-index: 9050;
2729 2730 }
2730 2731
2731 2732 .ac .yui-ac-content li.yui-ac-highlight {
2732 2733 background: #556CB5;
2733 2734 color: #FFF;
2734 2735 z-index: 9050;
2735 2736 }
2736 2737 .ac .yui-ac-bd {
2737 2738 z-index: 9050;
2738 2739 }
2739 2740
2740 2741 #repo_size {
2741 2742 display: block;
2742 2743 margin-top: 4px;
2743 2744 color: #666;
2744 2745 float: right;
2745 2746 }
2746 2747
2747 2748 .currently_following {
2748 2749 padding-left: 10px;
2749 2750 padding-bottom: 5px;
2750 2751 }
2751 2752
2752 2753 #switch_repos {
2753 2754 position: absolute;
2754 2755 height: 25px;
2755 2756 z-index: 1;
2756 2757 }
2757 2758
2758 2759 #switch_repos select {
2759 2760 min-width: 150px;
2760 2761 max-height: 250px;
2761 2762 z-index: 1;
2762 2763 }
2763 2764
2764 2765 .breadcrumbs {
2765 2766 border: medium none;
2766 2767 color: #FFF;
2767 2768 font-weight: 700;
2768 2769 font-size: 14px;
2769 2770 }
2770 2771
2771 2772 .breadcrumbs .hash {
2772 2773 text-transform: none;
2773 2774 color: #fff;
2774 2775 }
2775 2776
2776 2777 .flash_msg {
2777 2778 }
2778 2779
2779 2780 .flash_msg ul {
2780 2781 }
2781 2782
2782 2783 .error_red {
2783 2784 color: red;
2784 2785 }
2785 2786
2786 2787 .flash_msg .alert-error {
2787 2788 background-color: #c43c35;
2788 2789 background-repeat: repeat-x;
2789 2790 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
2790 2791 border-color: #c43c35 #c43c35 #882a25;
2791 2792 }
2792 2793
2793 2794 .flash_msg .alert-error a {
2794 2795 text-decoration: underline;
2795 2796 }
2796 2797
2797 2798 .flash_msg .alert-warning {
2798 2799 color: #404040 !important;
2799 2800 background-color: #eedc94;
2800 2801 background-repeat: repeat-x;
2801 2802 background-image: linear-gradient(to bottom, #fceec1, #eedc94);
2802 2803 border-color: #eedc94 #eedc94 #e4c652;
2803 2804 }
2804 2805
2805 2806 .flash_msg .alert-warning a {
2806 2807 text-decoration: underline;
2807 2808 }
2808 2809
2809 2810 .flash_msg .alert-success {
2810 2811 background-color: #57a957;
2811 2812 background-repeat: repeat-x !important;
2812 2813 background-image: linear-gradient(to bottom, #62c462, #57a957);
2813 2814 border-color: #57a957 #57a957 #3d773d;
2814 2815 }
2815 2816
2816 2817 .flash_msg .alert-success a {
2817 2818 text-decoration: underline;
2818 2819 color: #FFF !important;
2819 2820 }
2820 2821
2821 2822 .flash_msg .alert-info {
2822 2823 background-color: #339bb9;
2823 2824 background-repeat: repeat-x;
2824 2825 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
2825 2826 border-color: #339bb9 #339bb9 #22697d;
2826 2827 }
2827 2828
2828 2829 .flash_msg .alert-info a {
2829 2830 text-decoration: underline;
2830 2831 }
2831 2832
2832 2833 .flash_msg .alert-error,
2833 2834 .flash_msg .alert-warning,
2834 2835 .flash_msg .alert-success,
2835 2836 .flash_msg .alert-info {
2836 2837 font-size: 12px;
2837 2838 font-weight: 700;
2838 2839 min-height: 14px;
2839 2840 line-height: 14px;
2840 2841 margin-bottom: 10px;
2841 2842 margin-top: 0;
2842 2843 display: block;
2843 2844 overflow: auto;
2844 2845 padding: 6px 10px 6px 10px;
2845 2846 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2846 2847 position: relative;
2847 2848 color: #FFF;
2848 2849 border-width: 1px;
2849 2850 border-style: solid;
2850 2851 border-radius: 4px;
2851 2852 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2852 2853 }
2853 2854
2854 2855 div#legend_data {
2855 2856 padding-left: 10px;
2856 2857 }
2857 2858 div#legend_container table {
2858 2859 border: none !important;
2859 2860 }
2860 2861 div#legend_container table,
2861 2862 div#legend_choices table {
2862 2863 width: auto !important;
2863 2864 }
2864 2865
2865 2866 table#permissions_manage span.private_repo_msg {
2866 2867 font-size: 0.8em;
2867 2868 opacity: 0.6;
2868 2869 }
2869 2870
2870 2871 table#permissions_manage td.private_repo_msg {
2871 2872 font-size: 0.8em;
2872 2873 }
2873 2874
2874 2875 table#permissions_manage tr#add_perm_input td {
2875 2876 vertical-align: middle;
2876 2877 }
2877 2878
2878 2879 div.gravatar {
2879 2880 float: left;
2880 2881 background-color: #FFF;
2881 2882 margin-right: 0.7em;
2882 2883 padding: 1px 1px 1px 1px;
2883 2884 line-height: 0;
2884 2885 border-radius: 3px;
2885 2886 }
2886 2887
2887 2888 div.gravatar img {
2888 2889 border-radius: 2px;
2889 2890 }
2890 2891
2891 2892 nav.navbar, #content, #footer {
2892 2893 min-width: 978px;
2893 2894 }
2894 2895
2895 2896 #content {
2896 2897 clear: both;
2897 2898 padding: 10px 10px 14px 10px;
2898 2899 }
2899 2900
2900 2901 #content.hover {
2901 2902 padding: 55px 10px 14px 10px !important;
2902 2903 }
2903 2904
2904 2905 #content div.panel div.panel-heading div.search {
2905 2906 border-left: 1px solid #576622;
2906 2907 }
2907 2908
2908 2909 #content div.panel div.panel-heading div.search > div input {
2909 2910 border: 1px solid #576622;
2910 2911 }
2911 2912
2912 2913 .label,
2913 2914 .btn {
2914 2915 color: #515151 !important;
2915 2916 background-color: #DADADA;
2916 2917 background-repeat: repeat-x;
2917 2918 background-image: linear-gradient(to bottom, #F4F4F4, #DADADA);
2918 2919
2919 2920 border-top: 1px solid #DDD;
2920 2921 border-left: 1px solid #c6c6c6;
2921 2922 border-right: 1px solid #DDD;
2922 2923 border-bottom: 1px solid #c6c6c6;
2923 2924 outline: none;
2924 2925 margin: 0 3px 0 0;
2925 2926 border-radius: 4px 4px 4px 4px !important;
2926 2927 padding: 3px 3px 3px 3px;
2927 2928 display: inline-block;
2928 2929 white-space: nowrap;
2929 2930 }
2930 2931 .btn {
2931 2932 cursor: pointer !important;
2932 2933 }
2933 2934 .label {
2934 2935 cursor: default !important;
2935 2936 }
2936 2937
2937 2938 .panel-body.settings > ul.nav-stacked {
2938 2939 float: left;
2939 2940 width: 150px;
2940 2941 margin: 20px;
2941 2942 color: #393939;
2942 2943 font-weight: 700;
2943 2944 }
2944 2945
2945 2946 .panel-body.settings > ul.nav-stacked a {
2946 2947 color: inherit;
2947 2948 }
2948 2949
2949 2950 .panel-body.settings > ul.nav-stacked li.active {
2950 2951 list-style-type: disc
2951 2952 }
2952 2953
2953 2954 .panel-body.settings > div,
2954 2955 .panel-body.settings > form {
2955 2956 float: left;
2956 2957 width: 750px;
2957 2958 margin: 10px 0 0 0;
2958 2959 border-left: 1px solid #DDDDDD;
2959 2960 }
2960 2961
2961 2962 .panel-body > div,
2962 2963 .panel-body > form {
2963 2964 padding: 0 20px 10px;
2964 2965 }
2965 2966
2966 2967 /* make .btn inputs and buttons and divs look the same */
2967 2968 button.btn,
2968 2969 input.btn {
2969 2970 font-family: inherit;
2970 2971 font-size: inherit;
2971 2972 line-height: inherit;
2972 2973 }
2973 2974
2974 2975 .btn::-moz-focus-inner {
2975 2976 border: 0;
2976 2977 padding: 0;
2977 2978 }
2978 2979
2979 2980 .btn.badge {
2980 2981 cursor: default !important;
2981 2982 }
2982 2983
2983 2984 input[disabled].btn,
2984 2985 .btn.disabled {
2985 2986 color: #999;
2986 2987 }
2987 2988
2988 2989 .label,
2989 2990 .btn.btn-sm {
2990 2991 padding: 3px 8px;
2991 2992 }
2992 2993
2993 2994 .btn.btn-xs {
2994 2995 padding: 1px 5px;
2995 2996 }
2996 2997
2997 2998 .btn:focus {
2998 2999 outline: none;
2999 3000 }
3000 3001 .btn:hover {
3001 3002 text-decoration: none;
3002 3003 color: #515151;
3003 3004 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3004 3005 }
3005 3006 .btn.badge:hover {
3006 3007 box-shadow: none !important;
3007 3008 }
3008 3009 .btn.disabled:hover {
3009 3010 background-position: 0;
3010 3011 color: #999;
3011 3012 text-decoration: none;
3012 3013 box-shadow: none !important;
3013 3014 }
3014 3015
3015 3016 .label.label-danger,
3016 3017 .btn.btn-danger {
3017 3018 color: #fff !important;
3018 3019 background-color: #c43c35;
3019 3020 background-repeat: repeat-x;
3020 3021 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
3021 3022 border-color: #c43c35 #c43c35 #882a25;
3022 3023 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3023 3024 }
3024 3025
3025 3026 .label.label-primary,
3026 3027 .btn.btn-primary {
3027 3028 color: #fff !important;
3028 3029 background-color: #339bb9;
3029 3030 background-repeat: repeat-x;
3030 3031 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
3031 3032 border-color: #339bb9 #339bb9 #22697d;
3032 3033 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3033 3034 }
3034 3035
3035 3036 .label.label-success,
3036 3037 .btn.btn-success {
3037 3038 color: #fff !important;
3038 3039 background-color: #57a957;
3039 3040 background-repeat: repeat-x;
3040 3041 background-image: linear-gradient(to bottom, #62c462, #57a957);
3041 3042 border-color: #57a957 #57a957 #3d773d;
3042 3043 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3043 3044 }
3044 3045
3045 3046 .label.label-warning,
3046 3047 .btn.btn-warning {
3047 3048 color: #fff !important;
3048 3049 background-color: #faa732;
3049 3050 background-repeat: repeat-x;
3050 3051 background-image: linear-gradient(to bottom, #fbb450, #f89406);
3051 3052 border-color: #f89406 #f89406 #ad6704;
3052 3053 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3053 3054 }
3054 3055
3055 3056 label.disabled {
3056 3057 color: #aaa !important;
3057 3058 }
3058 3059
3059 3060 .btn.active {
3060 3061 font-weight: bold;
3061 3062 }
3062 3063
3063 3064 .alert {
3064 3065 padding: 15px;
3065 3066 margin: 20px 0;
3066 3067 border: 1px solid transparent;
3067 3068 border-radius: 4px;
3068 3069 }
3069 3070
3070 3071 .alert-success {
3071 3072 color: #3c763d;
3072 3073 background-color: #dff0d8;
3073 3074 border-color: #d6e9c6;
3074 3075 }
3075 3076
3076 3077 .alert-info {
3077 3078 color: #31708f;
3078 3079 background-color: #d9edf7;
3079 3080 border-color: #bce8f1;
3080 3081 }
3081 3082
3082 3083 .alert-warning {
3083 3084 color: #8a6d3b;
3084 3085 background-color: #fcf8e3;
3085 3086 border-color: #faebcc;
3086 3087 }
3087 3088
3088 3089 .alert-danger {
3089 3090 color: #a94442;
3090 3091 background-color: #f2dede;
3091 3092 border-color: #ebccd1;
3092 3093 }
3093 3094
3094 3095 ins, div.options a:hover {
3095 3096 text-decoration: none;
3096 3097 }
3097 3098
3098 3099 img,
3099 3100 nav.navbar #quick li a:hover span.normal,
3100 3101 #clone_url,
3101 3102 #clone_url_id
3102 3103 {
3103 3104 border: none;
3104 3105 }
3105 3106
3106 3107 img.icon, .right .merge img {
3107 3108 vertical-align: bottom;
3108 3109 }
3109 3110
3110 3111 nav.navbar ul#logged-user,
3111 3112 #content div.panel div.panel-heading ul.links,
3112 3113 #content div.panel div.message div.dismiss,
3113 3114 #content div.panel div.traffic div.legend ul {
3114 3115 float: right;
3115 3116 margin: 0;
3116 3117 padding: 0;
3117 3118 }
3118 3119
3119 3120 nav.navbar #home,
3120 3121 nav.navbar #logo,
3121 3122 #content div.panel ul.left,
3122 3123 #content div.panel ol.left,
3123 3124 div#commit_history,
3124 3125 div#legend_data, div#legend_container, div#legend_choices {
3125 3126 float: left;
3126 3127 }
3127 3128
3128 3129 nav.navbar #quick li .dropdown-menu,
3129 3130 #content #left #menu ul.closed,
3130 3131 #content #left #menu li ul.collapsed,
3131 3132 .yui-tt-shadow {
3132 3133 display: none;
3133 3134 }
3134 3135
3135 3136 .dropdown.open .dropdown-menu,
3136 3137 #content #left #menu ul.opened,
3137 3138 #content #left #menu li ul.expanded {
3138 3139 display: block !important;
3139 3140 }
3140 3141
3141 3142 .caret:after {
3142 3143 font-family: 'kallithea';
3143 3144 content: ' \23f7'; /* triangle-down */
3144 3145 }
3145 3146
3146 3147 .branch-switcher .select2-choice,
3147 3148 .repo-switcher .select2-choice {
3148 3149 padding: 0px 8px 1px !important;
3149 3150 display: block;
3150 3151 height: 100%;
3151 3152 }
3152 3153
3153 3154 .branch-switcher .select2-container,
3154 3155 .branch-switcher .select2-choice,
3155 3156 .branch-switcher .select2-choice span,
3156 3157 .repo-switcher .select2-container,
3157 3158 .repo-switcher .select2-choice,
3158 3159 .repo-switcher .select2-choice span {
3159 3160 background: transparent !important;
3160 3161 border: 0 !important;
3161 3162 box-shadow: none !important;
3162 3163 color: #FFFFFF !important;
3163 3164 }
3164 3165
3165 3166 .branch-switcher .select2-arrow,
3166 3167 .repo-switcher .select2-arrow {
3167 3168 display: none !important;
3168 3169 }
3169 3170
3170 3171 .branch-switcher-dropdown.select2-drop.select2-drop-active,
3171 3172 .repo-switcher-dropdown.select2-drop.select2-drop-active {
3172 3173 box-shadow: none;
3173 3174 color: #fff;
3174 3175 background-color: #576622;
3175 3176 }
3176 3177
3177 3178 .branch-switcher-dropdown.select2-drop.select2-drop-active .select2-results .select2-highlighted,
3178 3179 .repo-switcher-dropdown.select2-drop.select2-drop-active .select2-results .select2-highlighted {
3179 3180 background-color: #6388ad;
3180 3181 }
3181 3182
3182 3183 #content div.graph {
3183 3184 padding: 0 10px 10px;
3184 3185 height: 450px;
3185 3186 }
3186 3187
3187 3188 #content div.panel ol.lower-roman,
3188 3189 #content div.panel ol.upper-roman,
3189 3190 #content div.panel ol.lower-alpha,
3190 3191 #content div.panel ol.upper-alpha,
3191 3192 #content div.panel ol.decimal {
3192 3193 margin: 10px 24px 10px 44px;
3193 3194 }
3194 3195
3195 3196 #content div.panel div.form div.form-horizontal div.form-group > div input.error,
3196 3197 #login div.form div.form-horizontal div.form-group > div input.error,
3197 3198 #register div.form div.form-horizontal div.form-group > div input.error {
3198 3199 background: #FBE3E4;
3199 3200 border-top: 1px solid #e1b2b3;
3200 3201 border-left: 1px solid #e1b2b3;
3201 3202 border-right: 1px solid #FBC2C4;
3202 3203 border-bottom: 1px solid #FBC2C4;
3203 3204 }
3204 3205
3205 3206 #content div.panel div.form div.form-horizontal div.form-group > div input.success,
3206 3207 #login div.form div.form-horizontal div.form-group > div input.success,
3207 3208 #register div.form div.form-horizontal div.form-group > div input.success {
3208 3209 background: #E6EFC2;
3209 3210 border-top: 1px solid #cebb98;
3210 3211 border-left: 1px solid #cebb98;
3211 3212 border-right: 1px solid #c6d880;
3212 3213 border-bottom: 1px solid #c6d880;
3213 3214 }
3214 3215
3215 3216 #content div.panel div.form div.form-horizontal div.form-group > div select,
3216 3217 #content div.panel table th.selected input,
3217 3218 #content div.panel table td.selected input {
3218 3219 margin: 0;
3219 3220 }
3220 3221
3221 3222 #content div.panel div.form div.form-horizontal div.form-group > div {
3222 3223 margin: 10px 20px 10px 200px;
3223 3224 padding: 0;
3224 3225 }
3225 3226
3226 3227 #content div.panel div.form div.form-horizontal div.form-group > div a:hover,
3227 3228 #content div.panel div.form div.form-horizontal div.form-group > div a.ui-selectmenu:hover,
3228 3229 #content div.panel div.action a:hover {
3229 3230 color: #000;
3230 3231 text-decoration: none;
3231 3232 }
3232 3233
3233 3234 #content div.panel div.form div.form-horizontal div.form-group > div a.ui-selectmenu-focus,
3234 3235 #content div.panel div.action a.ui-selectmenu-focus {
3235 3236 border: 1px solid #666;
3236 3237 }
3237 3238
3238 3239 #content div.panel div.form div.form-horizontal div.form-group > div div.checkbox {
3239 3240 clear: both;
3240 3241 min-height: 12px;
3241 3242 padding: 0;
3242 3243 margin: 14px 0 10px;
3243 3244 }
3244 3245
3245 3246 #content div.panel div.form div.form-horizontal div.form-group > div div.checkbox input {
3246 3247 float: left;
3247 3248 margin: -4px 5px 0px 0px;
3248 3249 }
3249 3250
3250 3251 div.form div.form-horizontal div.form-group div.button input,
3251 3252 #content div.panel div.form div.form-horizontal div.buttons input,
3252 3253 div.form div.form-horizontal div.buttons input,
3253 3254 #content div.panel div.action div.button input {
3254 3255 font-size: 11px;
3255 3256 font-weight: 700;
3256 3257 margin: 0;
3257 3258 }
3258 3259
3259 3260 div.form div.form-horizontal div.form-group div.highlight,
3260 3261 #content div.panel div.form div.form-horizontal div.buttons div.highlight {
3261 3262 display: inline;
3262 3263 }
3263 3264
3264 3265 #content div.panel div.form div.form-horizontal div.buttons,
3265 3266 div.form div.form-horizontal div.buttons {
3266 3267 margin: 10px 10px 0 200px;
3267 3268 padding: 0;
3268 3269 }
3269 3270
3270 3271 #content div.panel table td.user,
3271 3272 #content div.panel table td.address {
3272 3273 width: 10%;
3273 3274 text-align: center;
3274 3275 }
3275 3276
3276 3277 #content div.panel div.action div.button,
3277 3278 #login div.form div.form-horizontal div.form-group > div div.link,
3278 3279 #register div.form div.form-horizontal div.form-group > div div.link {
3279 3280 text-align: right;
3280 3281 margin: 6px 0 0;
3281 3282 padding: 0;
3282 3283 }
3283 3284
3284 3285 #login, #register {
3285 3286 width: 520px;
3286 3287 margin: 10% auto 0;
3287 3288 padding: 0;
3288 3289 }
3289 3290
3290 3291 #login div.color,
3291 3292 #register div.color {
3292 3293 clear: both;
3293 3294 overflow: hidden;
3294 3295 background: #FFF;
3295 3296 margin: 10px auto 0;
3296 3297 padding: 3px 3px 3px 0;
3297 3298 }
3298 3299
3299 3300 #login div.color a,
3300 3301 #register div.color a {
3301 3302 width: 20px;
3302 3303 height: 20px;
3303 3304 display: block;
3304 3305 float: left;
3305 3306 margin: 0 0 0 3px;
3306 3307 padding: 0;
3307 3308 }
3308 3309
3309 3310 #login div.panel-heading h5,
3310 3311 #register div.panel-heading h5 {
3311 3312 color: #fff;
3312 3313 margin: 10px;
3313 3314 padding: 0;
3314 3315 }
3315 3316
3316 3317 #login div.form div.form-horizontal div.form-group,
3317 3318 #register div.form div.form-horizontal div.form-group {
3318 3319 clear: both;
3319 3320 overflow: hidden;
3320 3321 margin: 0;
3321 3322 padding: 0 0 10px;
3322 3323 }
3323 3324
3324 3325 #login div.form div.form-horizontal div.form-group span.error-message,
3325 3326 #register div.form div.form-horizontal div.form-group span.error-message {
3326 3327 height: 1%;
3327 3328 display: block;
3328 3329 color: red;
3329 3330 margin: 8px 0 0;
3330 3331 padding: 0;
3331 3332 max-width: 320px;
3332 3333 }
3333 3334
3334 3335 #login div.form div.form-horizontal div.form-group label,
3335 3336 #register div.form div.form-horizontal div.form-group > label {
3336 3337 color: #000;
3337 3338 font-weight: 700;
3338 3339 }
3339 3340
3340 3341 #login div.form div.form-horizontal div.form-group div,
3341 3342 #register div.form div.form-horizontal div.form-group > div {
3342 3343 float: left;
3343 3344 margin: 0;
3344 3345 padding: 0;
3345 3346 }
3346 3347
3347 3348 #login div.form div.form-horizontal div.form-group div.checkbox,
3348 3349 #register div.form div.form-horizontal div.form-group div.checkbox {
3349 3350 margin: 0 0 0 184px;
3350 3351 padding: 0;
3351 3352 }
3352 3353
3353 3354 #login div.form div.form-horizontal div.form-group div.checkbox label,
3354 3355 #register div.form div.form-horizontal div.form-group div.checkbox label {
3355 3356 color: #565656;
3356 3357 font-weight: 700;
3357 3358 }
3358 3359
3359 3360 #login div.form div.buttons input,
3360 3361 #register div.form div.form-horizontal div.buttons input {
3361 3362 color: #000;
3362 3363 font-size: 1em;
3363 3364 font-weight: 700;
3364 3365 margin: 0;
3365 3366 }
3366 3367
3367 3368 #changeset_content .container .wrapper,
3368 3369 #graph_content .container .wrapper {
3369 3370 width: 600px;
3370 3371 }
3371 3372
3372 3373 #changeset_content .container .date,
3373 3374 .ac .match {
3374 3375 font-weight: 700;
3375 3376 padding-top: 5px;
3376 3377 padding-bottom: 5px;
3377 3378 }
3378 3379
3379 3380 div#legend_container table td,
3380 3381 div#legend_choices table td {
3381 3382 border: none !important;
3382 3383 height: 20px !important;
3383 3384 padding: 0 !important;
3384 3385 }
3385 3386
3386 3387 .q_filter_box {
3387 3388 border-radius: 4px;
3388 3389 border: 0 none;
3389 3390 margin-bottom: -4px;
3390 3391 margin-top: -4px;
3391 3392 padding-left: 3px;
3392 3393 }
3393 3394
3394 3395 #node_filter {
3395 3396 border: 0px solid #545454;
3396 3397 color: #AAAAAA;
3397 3398 padding-left: 3px;
3398 3399 }
3399 3400
3400 3401 .reviewer_status {
3401 3402 float: left;
3402 3403 }
3403 3404
3404 3405 .reviewers_member {
3405 3406 height: 15px;
3406 3407 padding: 0px 0px 0px 10px;
3407 3408 }
3408 3409
3409 3410 .emails_wrap .email_entry {
3410 3411 height: 30px;
3411 3412 padding: 0px 0px 0px 10px;
3412 3413 }
3413 3414 .emails_wrap .email_entry .email {
3414 3415 float: left
3415 3416 }
3416 3417 .emails_wrap .email_entry .email_action {
3417 3418 float: left
3418 3419 }
3419 3420
3420 3421 .ips_wrap .ip_entry {
3421 3422 height: 30px;
3422 3423 padding: 0px 0px 0px 10px;
3423 3424 }
3424 3425 .ips_wrap .ip_entry .ip {
3425 3426 float: left
3426 3427 }
3427 3428 .ips_wrap .ip_entry .ip_action {
3428 3429 float: left
3429 3430 }
3430 3431
3431 3432
3432 3433 /*README STYLE*/
3433 3434
3434 3435 div.readme {
3435 3436 padding: 0px;
3436 3437 }
3437 3438
3438 3439 div.readme h2 {
3439 3440 font-weight: normal;
3440 3441 }
3441 3442
3442 3443 div.readme .readme_box {
3443 3444 background-color: #fafafa;
3444 3445 }
3445 3446
3446 3447 div.readme .readme_box {
3447 3448 clear: both;
3448 3449 overflow: hidden;
3449 3450 margin: 0;
3450 3451 padding: 0 20px 10px;
3451 3452 }
3452 3453
3453 3454 div.readme .readme_box h1,
3454 3455 div.readme .readme_box h2,
3455 3456 div.readme .readme_box h3,
3456 3457 div.readme .readme_box h4,
3457 3458 div.readme .readme_box h5,
3458 3459 div.readme .readme_box h6 {
3459 3460 border-bottom: 0 !important;
3460 3461 margin: 0 !important;
3461 3462 padding: 0 !important;
3462 3463 line-height: 1.5em !important;
3463 3464 }
3464 3465
3465 3466
3466 3467 div.readme .readme_box h1:first-child {
3467 3468 padding-top: .25em !important;
3468 3469 }
3469 3470
3470 3471 div.readme .readme_box h2,
3471 3472 div.readme .readme_box h3 {
3472 3473 margin: 1em 0 !important;
3473 3474 }
3474 3475
3475 3476 div.readme .readme_box h2 {
3476 3477 margin-top: 1.5em !important;
3477 3478 border-top: 4px solid #e0e0e0 !important;
3478 3479 padding-top: .5em !important;
3479 3480 }
3480 3481
3481 3482 div.readme .readme_box p {
3482 3483 color: black !important;
3483 3484 margin: 1em 0 !important;
3484 3485 line-height: 1.5em !important;
3485 3486 }
3486 3487
3487 3488 div.readme .readme_box ul {
3488 3489 list-style: disc !important;
3489 3490 margin: 1em 0 1em 2em !important;
3490 3491 }
3491 3492
3492 3493 div.readme .readme_box ol {
3493 3494 list-style: decimal;
3494 3495 margin: 1em 0 1em 2em !important;
3495 3496 }
3496 3497
3497 3498 div.readme .readme_box code {
3498 3499 font-size: 12px !important;
3499 3500 background-color: ghostWhite !important;
3500 3501 color: #444 !important;
3501 3502 padding: 0 .2em !important;
3502 3503 border: 1px solid #dedede !important;
3503 3504 }
3504 3505
3505 3506 div.readme .readme_box pre code {
3506 3507 padding: 0 !important;
3507 3508 font-size: 12px !important;
3508 3509 background-color: #eee !important;
3509 3510 border: none !important;
3510 3511 }
3511 3512
3512 3513 div.readme .readme_box pre {
3513 3514 margin: 1em 0;
3514 3515 font-size: 12px;
3515 3516 background-color: #eee;
3516 3517 border: 1px solid #ddd;
3517 3518 padding: 5px;
3518 3519 color: #444;
3519 3520 overflow: auto;
3520 3521 border-radius: 3px;
3521 3522 }
3522 3523
3523 3524 div.readme .readme_box table {
3524 3525 display: table;
3525 3526 border-collapse: separate;
3526 3527 border-spacing: 2px;
3527 3528 border-color: gray;
3528 3529 width: auto !important;
3529 3530 }
3530 3531
3531 3532
3532 3533 /** RST STYLE **/
3533 3534
3534 3535
3535 3536 div.rst-block {
3536 3537 padding: 0px;
3537 3538 }
3538 3539
3539 3540 div.rst-block h2 {
3540 3541 font-weight: normal;
3541 3542 }
3542 3543
3543 3544 div.rst-block {
3544 3545 background-color: #fafafa;
3545 3546 }
3546 3547
3547 3548 div.rst-block {
3548 3549 clear: both;
3549 3550 overflow: hidden;
3550 3551 margin: 0;
3551 3552 padding: 0 20px;
3552 3553 }
3553 3554
3554 3555 div.rst-block h1,
3555 3556 div.rst-block h2,
3556 3557 div.rst-block h3,
3557 3558 div.rst-block h4,
3558 3559 div.rst-block h5,
3559 3560 div.rst-block h6 {
3560 3561 border-bottom: 0 !important;
3561 3562 margin: 0 !important;
3562 3563 padding: 0 !important;
3563 3564 line-height: 1.5em !important;
3564 3565 }
3565 3566
3566 3567
3567 3568 div.rst-block h1:first-child {
3568 3569 padding-top: .25em !important;
3569 3570 }
3570 3571
3571 3572 div.rst-block h2,
3572 3573 div.rst-block h3 {
3573 3574 margin: 1em 0 !important;
3574 3575 }
3575 3576
3576 3577 div.rst-block h2 {
3577 3578 margin-top: 1.5em !important;
3578 3579 border-top: 4px solid #e0e0e0 !important;
3579 3580 padding-top: .5em !important;
3580 3581 }
3581 3582
3582 3583 div.rst-block p {
3583 3584 color: black !important;
3584 3585 margin: 1em 0 !important;
3585 3586 line-height: 1.5em !important;
3586 3587 }
3587 3588
3588 3589 div.rst-block ul {
3589 3590 list-style: disc !important;
3590 3591 margin: 1em 0 1em 2em !important;
3591 3592 }
3592 3593
3593 3594 div.rst-block ol {
3594 3595 list-style: decimal;
3595 3596 margin: 1em 0 1em 2em !important;
3596 3597 }
3597 3598
3598 3599 div.rst-block code {
3599 3600 font-size: 12px !important;
3600 3601 background-color: ghostWhite !important;
3601 3602 color: #444 !important;
3602 3603 padding: 0 .2em !important;
3603 3604 border: 1px solid #dedede !important;
3604 3605 }
3605 3606
3606 3607 div.rst-block pre code {
3607 3608 padding: 0 !important;
3608 3609 font-size: 12px !important;
3609 3610 background-color: #eee !important;
3610 3611 border: none !important;
3611 3612 }
3612 3613
3613 3614 div.rst-block pre {
3614 3615 margin: 1em 0;
3615 3616 font-size: 12px;
3616 3617 background-color: #eee;
3617 3618 border: 1px solid #ddd;
3618 3619 padding: 5px;
3619 3620 color: #444;
3620 3621 overflow: auto;
3621 3622 border-radius: 3px;
3622 3623 }
3623 3624
3624 3625
3625 3626 /** comment main **/
3626 3627 .comments {
3627 3628 padding: 10px 20px;
3628 3629 max-width: 978px;
3629 3630 }
3630 3631
3631 3632 .comments .comment .comment-wrapp {
3632 3633 border: 1px solid #ddd;
3633 3634 margin-top: 10px;
3634 3635 border-radius: 4px;
3635 3636 }
3636 3637
3637 3638 .comments .comment .meta {
3638 3639 background: #f8f8f8;
3639 3640 padding: 4px;
3640 3641 border-bottom: 1px solid #ddd;
3641 3642 min-height: 18px;
3642 3643 overflow: auto;
3643 3644 }
3644 3645
3645 3646 .comments .comment .meta img {
3646 3647 vertical-align: middle;
3647 3648 }
3648 3649
3649 3650 .comments .comment .meta .user {
3650 3651 font-weight: bold;
3651 3652 float: left;
3652 3653 padding: 4px 2px 2px 2px;
3653 3654 }
3654 3655
3655 3656 .comments .comment .meta .date {
3656 3657 float: left;
3657 3658 padding: 4px 4px 0px 4px;
3658 3659 }
3659 3660
3660 3661 .comments .comment .text {
3661 3662 background-color: #FAFAFA;
3662 3663 margin: 6px;
3663 3664 }
3664 3665
3665 3666 .comments-number {
3666 3667 padding: 0px 20px 10px;
3667 3668 font-weight: bold;
3668 3669 color: #666;
3669 3670 font-size: 16px;
3670 3671 }
3671 3672
3672 3673 .automatic-comment {
3673 3674 font-style: italic;
3674 3675 }
3675 3676
3676 3677 /** comment form **/
3677 3678
3678 3679 .status-block {
3679 3680 margin: 5px;
3680 3681 clear: both
3681 3682 }
3682 3683
3683 3684 .comment-form textarea {
3684 3685 width: 100%;
3685 3686 height: 100px;
3686 3687 font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
3687 3688 }
3688 3689
3689 3690 form.comment-form {
3690 3691 margin-top: 10px;
3691 3692 margin-left: 10px;
3692 3693 }
3693 3694
3694 3695 .comment-inline-form .comment-block-ta,
3695 3696 .comment-form .comment-block-ta {
3696 3697 border: 1px solid #ccc;
3697 3698 border-radius: 3px;
3698 3699 box-sizing: border-box;
3699 3700 }
3700 3701
3701 3702 .comment-form-submit {
3702 3703 margin-top: 5px;
3703 3704 margin-left: 525px;
3704 3705 }
3705 3706
3706 3707 .file-comments {
3707 3708 display: none;
3708 3709 }
3709 3710
3710 3711 .comment-form .comment {
3711 3712 margin-left: 10px;
3712 3713 }
3713 3714
3714 3715 .comment-form .comment-help {
3715 3716 padding: 5px 5px 5px 5px;
3716 3717 color: #666;
3717 3718 }
3718 3719
3719 3720 .comment-form .comment-button {
3720 3721 padding-top: 5px;
3721 3722 }
3722 3723
3723 3724 .add-another-button {
3724 3725 margin-left: 10px;
3725 3726 margin-top: 10px;
3726 3727 margin-bottom: 10px;
3727 3728 }
3728 3729
3729 3730 .comment .buttons {
3730 3731 float: right;
3731 3732 margin: -1px 0px 0px 0px;
3732 3733 }
3733 3734
3734 3735 .show-inline-comments {
3735 3736 position: relative;
3736 3737 top: 1px
3737 3738 }
3738 3739
3739 3740 /** comment inline form **/
3740 3741 .comment-inline-form {
3741 3742 margin: 4px;
3742 3743 max-width: 978px;
3743 3744 }
3744 3745 .comment-inline-form .submitting-overlay {
3745 3746 display: none;
3746 3747 height: 0;
3747 3748 text-align: center;
3748 3749 font-size: 16px;
3749 3750 opacity: 0.5;
3750 3751 }
3751 3752
3752 3753 .comment-inline-form .clearfix,
3753 3754 .comment-form .clearfix {
3754 3755 background: #EEE;
3755 3756 border-radius: 4px;
3756 3757 padding: 5px;
3757 3758 margin: 0px;
3758 3759 }
3759 3760
3760 3761 div.comment-inline-form {
3761 3762 padding: 4px 0px 6px 0px;
3762 3763 }
3763 3764
3764 3765 .comment-inline-form textarea {
3765 3766 width: 100%;
3766 3767 height: 100px;
3767 3768 font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
3768 3769 }
3769 3770
3770 3771 form.comment-inline-form {
3771 3772 margin-top: 10px;
3772 3773 margin-left: 10px;
3773 3774 }
3774 3775
3775 3776 .comment-inline-form-submit {
3776 3777 margin-top: 5px;
3777 3778 margin-left: 525px;
3778 3779 }
3779 3780
3780 3781 .file-comments {
3781 3782 display: none;
3782 3783 }
3783 3784
3784 3785 .comment-inline-form .comment {
3785 3786 margin-left: 10px;
3786 3787 }
3787 3788
3788 3789 .comment-inline-form .comment-help {
3789 3790 padding: 5px 5px 5px 5px;
3790 3791 color: #666;
3791 3792 }
3792 3793
3793 3794 .comment-inline-form .comment-button {
3794 3795 padding-top: 5px;
3795 3796 }
3796 3797
3797 3798 /** comment inline **/
3798 3799 .inline-comments {
3799 3800 padding: 0 20px;
3800 3801 }
3801 3802
3802 3803 .inline-comments .comment .comment-wrapp {
3803 3804 max-width: 978px;
3804 3805 border: 1px solid #ddd;
3805 3806 border-radius: 4px;
3806 3807 margin: 3px 3px 5px 5px;
3807 3808 background-color: #FAFAFA;
3808 3809 }
3809 3810
3810 3811 .inline-comments .add-button-row {
3811 3812 padding: 2px 4px 8px 5px;
3812 3813 }
3813 3814
3814 3815 .inline-comments .comment .meta {
3815 3816 background: #f8f8f8;
3816 3817 padding: 4px;
3817 3818 border-bottom: 1px solid #ddd;
3818 3819 min-height: 20px;
3819 3820 overflow: auto;
3820 3821 }
3821 3822
3822 3823 .inline-comments .comment .meta img {
3823 3824 vertical-align: middle;
3824 3825 }
3825 3826
3826 3827 .inline-comments .comment .meta .user {
3827 3828 font-weight: bold;
3828 3829 float: left;
3829 3830 padding: 3px;
3830 3831 }
3831 3832
3832 3833 .inline-comments .comment .meta .date {
3833 3834 float: left;
3834 3835 padding: 3px;
3835 3836 }
3836 3837
3837 3838 .inline-comments .comment .text {
3838 3839 background-color: #FAFAFA;
3839 3840 margin: 6px;
3840 3841 }
3841 3842
3842 3843 .inline-comments .comments-number {
3843 3844 padding: 0px 0px 10px 0px;
3844 3845 font-weight: bold;
3845 3846 color: #666;
3846 3847 font-size: 16px;
3847 3848 }
3848 3849
3849 3850 input.status_change_radio {
3850 3851 margin: 2px 0 5px 15px;
3851 3852 vertical-align: middle;
3852 3853 }
3853 3854
3854 3855 .badge {
3855 3856 padding: 4px 4px !important;
3856 3857 text-align: center;
3857 3858 color: #888 !important;
3858 3859 background-color: #DEDEDE !important;
3859 3860 border-radius: 4px !important;
3860 3861 }
3861 3862
3862 3863 .notification-header {
3863 3864 padding-top: 6px;
3864 3865 }
3865 3866 .notification-header .desc {
3866 3867 font-size: 16px;
3867 3868 height: 24px;
3868 3869 float: left
3869 3870 }
3870 3871 .notification-list .container.unread {
3871 3872 background: none repeat scroll 0 0 rgba(255, 255, 180, 0.6);
3872 3873 }
3873 3874 .notification-header .gravatar {
3874 3875 background: none repeat scroll 0 0 transparent;
3875 3876 padding: 0px 0px 0px 8px;
3876 3877 }
3877 3878 .notification-list .container .notification-header .desc {
3878 3879 font-weight: bold;
3879 3880 font-size: 17px;
3880 3881 }
3881 3882 .notification-header .delete-notifications {
3882 3883 float: right;
3883 3884 padding-top: 8px;
3884 3885 cursor: pointer;
3885 3886 }
3886 3887 .notification-header .read-notifications {
3887 3888 float: right;
3888 3889 padding-top: 8px;
3889 3890 cursor: pointer;
3890 3891 }
3891 3892 .notification-subject {
3892 3893 clear: both;
3893 3894 border-bottom: 1px solid #eee;
3894 3895 padding: 5px 0px;
3895 3896 }
3896 3897
3897 3898 .notification-body {
3898 3899 clear: both;
3899 3900 margin: 34px 2px 2px 8px
3900 3901 }
3901 3902
3902 3903 /****
3903 3904 PULL REQUESTS
3904 3905 *****/
3905 3906 .pullrequests_section_head {
3906 3907 padding: 10px 10px 10px 0px;
3907 3908 margin: 0 20px;
3908 3909 font-size: 16px;
3909 3910 font-weight: bold;
3910 3911 }
3911 3912
3912 3913 div.pr-details-title.closed {
3913 3914 color: #555;
3914 3915 background: #eee;
3915 3916 }
3916 3917
3917 3918 div.pr {
3918 3919 margin: 0px 20px;
3919 3920 padding: 4px 4px;
3920 3921 }
3921 3922 div.pr-desc {
3922 3923 margin: 0px 20px;
3923 3924 }
3924 3925 tr.pr-closed td {
3925 3926 background-color: #eee !important;
3926 3927 color: #555 !important;
3927 3928 }
3928 3929
3929 3930 span.pr-closed-tag {
3930 3931 margin-bottom: 1px;
3931 3932 margin-right: 1px;
3932 3933 padding: 1px 3px;
3933 3934 font-size: 10px;
3934 3935 padding: 1px 3px 1px 3px;
3935 3936 font-size: 10px;
3936 3937 color: #577632;
3937 3938 white-space: nowrap;
3938 3939 border-radius: 4px;
3939 3940 border: 1px solid #d9e8f8;
3940 3941 line-height: 1.5em;
3941 3942 }
3942 3943
3943 3944 .pr-box {
3944 3945 max-width: 978px;
3945 3946 }
3946 3947
3947 3948 #s2id_org_ref,
3948 3949 #s2id_other_ref,
3949 3950 #s2id_org_repo,
3950 3951 #s2id_other_repo {
3951 3952 min-width: 150px;
3952 3953 margin: 5px;
3953 3954 }
3954 3955
3955 3956 #pr-summary .msg-div {
3956 3957 margin: 5px 0;
3957 3958 }
3958 3959
3959 3960 /****
3960 3961 PERMS
3961 3962 *****/
3962 3963 #perms .perms_section_head {
3963 3964 padding: 10px 10px 10px 0px;
3964 3965 font-size: 16px;
3965 3966 font-weight: bold;
3966 3967 text-transform: capitalize;
3967 3968 }
3968 3969
3969 3970 #perms .perms_section_head label {
3970 3971 margin-left: 10px;
3971 3972 }
3972 3973
3973 3974 #perms .perm_tag {
3974 3975 position: relative;
3975 3976 top: -2px;
3976 3977 padding: 3px 3px 1px 3px;
3977 3978 font-size: 10px;
3978 3979 font-weight: bold;
3979 3980 text-transform: uppercase;
3980 3981 white-space: nowrap;
3981 3982 border-radius: 3px;
3982 3983 }
3983 3984
3984 3985 #perms .perm_tag.admin {
3985 3986 background-color: #B94A48;
3986 3987 color: #ffffff;
3987 3988 }
3988 3989
3989 3990 #perms .perm_tag.write {
3990 3991 background-color: #DB7525;
3991 3992 color: #ffffff;
3992 3993 }
3993 3994
3994 3995 #perms .perm_tag.read {
3995 3996 background-color: #468847;
3996 3997 color: #ffffff;
3997 3998 }
3998 3999
3999 4000 #perms .perm_tag.none {
4000 4001 background-color: #bfbfbf;
4001 4002 color: #ffffff;
4002 4003 }
4003 4004
4004 4005 input.perm_filter {
4005 4006 position: relative;
4006 4007 top: 2px;
4007 4008 }
4008 4009
4009 4010 .perm-gravatar {
4010 4011 vertical-align: middle;
4011 4012 padding: 2px;
4012 4013 }
4013 4014 .perm-gravatar-ac {
4014 4015 vertical-align: middle;
4015 4016 padding: 2px;
4016 4017 width: 14px;
4017 4018 height: 14px;
4018 4019 }
4019 4020
4020 4021 /*****************************************************************************
4021 4022 DIFFS CSS
4022 4023 ******************************************************************************/
4023 4024 .diff-collapse {
4024 4025 text-align: center;
4025 4026 margin-bottom: -15px;
4026 4027 }
4027 4028 .diff-collapse-button {
4028 4029 cursor: pointer;
4029 4030 color: #666;
4030 4031 font-size: 16px;
4031 4032 }
4032 4033 .diff-container {
4033 4034
4034 4035 }
4035 4036
4036 4037 .compare-revision-selector {
4037 4038 font-weight: bold;
4038 4039 font-size: 14px;
4039 4040 }
4040 4041 .compare-revision-selector > div {
4041 4042 display: inline-block;
4042 4043 margin-left: 8px;
4043 4044 vertical-align: middle;
4044 4045 }
4045 4046 .compare-revision-selector .btn {
4046 4047 margin-bottom: 0;
4047 4048 }
4048 4049
4049 4050
4050 4051 div.diffblock {
4051 4052 overflow: auto;
4052 4053 padding: 0px;
4053 4054 border: 1px solid #ccc;
4054 4055 background: #f8f8f8;
4055 4056 font-size: 100%;
4056 4057 line-height: 100%;
4057 4058 /* new */
4058 4059 line-height: 125%;
4059 4060 border-radius: 6px 6px 0px 0px;
4060 4061 }
4061 4062
4062 4063 .compare-revision-selector,
4063 4064 div.diffblock .code-header {
4064 4065 border-bottom: 1px solid #CCCCCC;
4065 4066 background: #EEEEEE;
4066 4067 padding: 10px 0 10px 0;
4067 4068 min-height: 14px;
4068 4069 }
4069 4070
4070 4071 div.diffblock .code-header.banner {
4071 4072 border-bottom: 1px solid #CCCCCC;
4072 4073 background: #EEEEEE;
4073 4074 height: 14px;
4074 4075 margin: 0;
4075 4076 padding: 3px 100px 11px 100px;
4076 4077 }
4077 4078
4078 4079 div.diffblock .code-header-title {
4079 4080 padding: 0px 0px 10px 5px !important;
4080 4081 margin: 0 !important;
4081 4082 }
4082 4083 div.diffblock .code-header .hash {
4083 4084 float: left;
4084 4085 padding: 2px 0 0 2px;
4085 4086 }
4086 4087 div.diffblock .code-header .date {
4087 4088 float: left;
4088 4089 text-transform: uppercase;
4089 4090 padding: 2px 0px 0px 2px;
4090 4091 }
4091 4092 div.diffblock .code-header div {
4092 4093 margin-left: 4px;
4093 4094 font-weight: bold;
4094 4095 font-size: 14px;
4095 4096 }
4096 4097
4097 4098 div.diffblock .parents {
4098 4099 float: left;
4099 4100 min-height: 26px;
4100 4101 font-size: 10px;
4101 4102 font-weight: 400;
4102 4103 vertical-align: middle;
4103 4104 padding: 0px 2px 2px 2px;
4104 4105 background-color: #eeeeee;
4105 4106 border-bottom: 1px solid #CCCCCC;
4106 4107 }
4107 4108
4108 4109 div.diffblock .children {
4109 4110 float: right;
4110 4111 min-height: 26px;
4111 4112 font-size: 10px;
4112 4113 font-weight: 400;
4113 4114 vertical-align: middle;
4114 4115 text-align: right;
4115 4116 padding: 0px 2px 2px 2px;
4116 4117 background-color: #eeeeee;
4117 4118 border-bottom: 1px solid #CCCCCC;
4118 4119 }
4119 4120
4120 4121 div.diffblock .code-body {
4121 4122 background: #FFFFFF;
4122 4123 clear: both;
4123 4124 }
4124 4125 div.diffblock pre.raw {
4125 4126 background: #FFFFFF;
4126 4127 color: #000000;
4127 4128 }
4128 4129 table.code-difftable {
4129 4130 border-collapse: collapse;
4130 4131 width: 99%;
4131 4132 border-radius: 0px !important;
4132 4133 }
4133 4134 table.code-difftable td {
4134 4135 padding: 0 !important;
4135 4136 background: none !important;
4136 4137 border: 0 !important;
4137 4138 vertical-align: baseline !important
4138 4139 }
4139 4140 table.code-difftable .context {
4140 4141 background: none repeat scroll 0 0 #DDE7EF;
4141 4142 color: #999;
4142 4143 }
4143 4144 table.code-difftable .add {
4144 4145 background: none repeat scroll 0 0 #DDFFDD;
4145 4146 }
4146 4147 table.code-difftable .add ins {
4147 4148 background: none repeat scroll 0 0 #AAFFAA;
4148 4149 text-decoration: none;
4149 4150 }
4150 4151 table.code-difftable .del {
4151 4152 background: none repeat scroll 0 0 #FFDDDD;
4152 4153 }
4153 4154 table.code-difftable .del del {
4154 4155 background: none repeat scroll 0 0 #FFAAAA;
4155 4156 text-decoration: none;
4156 4157 }
4157 4158
4158 4159 table.code-highlighttable div.code-highlight pre u:before,
4159 4160 table.code-difftable td.code pre u:before {
4160 4161 content: "\21a6";
4161 4162 display: inline-block;
4162 4163 width: 0;
4163 4164 }
4164 4165 table.code-highlighttable div.code-highlight pre u.cr:before,
4165 4166 table.code-difftable td.code pre u.cr:before {
4166 4167 content: "\21a4";
4167 4168 display: inline-block;
4168 4169 color: rgba(0,0,0,0.5);
4169 4170 }
4170 4171 table.code-highlighttable div.code-highlight pre u,
4171 4172 table.code-difftable td.code pre u {
4172 4173 color: rgba(0,0,0,0.15);
4173 4174 }
4174 4175 table.code-highlighttable div.code-highlight pre i,
4175 4176 table.code-difftable td.code pre i {
4176 4177 border-style: solid;
4177 4178 border-left-width: 1px;
4178 4179 color: rgba(0,0,0,0.5);
4179 4180 }
4180 4181
4181 4182 /** LINE NUMBERS **/
4182 4183 table.code-difftable .lineno {
4183 4184 padding-left: 2px;
4184 4185 padding-right: 2px !important;
4185 4186 width: 30px;
4186 4187 -moz-user-select: none;
4187 4188 -webkit-user-select: none;
4188 4189 border-right: 1px solid #CCC !important;
4189 4190 border-left: 0px solid #CCC !important;
4190 4191 border-top: 0px solid #CCC !important;
4191 4192 border-bottom: none !important;
4192 4193 vertical-align: middle !important;
4193 4194 text-align: center;
4194 4195 }
4195 4196 table.code-difftable .lineno.new {
4196 4197 text-align: right;
4197 4198 }
4198 4199 table.code-difftable .lineno.old {
4199 4200 text-align: right;
4200 4201 }
4201 4202 table.code-difftable .lineno a {
4202 4203 color: #aaa !important;
4203 4204 font: 11px Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace !important;
4204 4205 letter-spacing: -1px;
4205 4206 padding-left: 10px;
4206 4207 padding-right: 8px;
4207 4208 box-sizing: border-box;
4208 4209 cursor: pointer;
4209 4210 display: block;
4210 4211 width: 100%;
4211 4212 }
4212 4213
4213 4214 table.code-difftable .line:hover .lineno a {
4214 4215 color: #333 !important;
4215 4216 }
4216 4217
4217 4218 table.code-difftable .lineno-inline {
4218 4219 background: none repeat scroll 0 0 #FFF !important;
4219 4220 padding-left: 2px;
4220 4221 padding-right: 2px;
4221 4222 text-align: right;
4222 4223 width: 30px;
4223 4224 -moz-user-select: none;
4224 4225 -webkit-user-select: none;
4225 4226 }
4226 4227
4227 4228 /** CODE **/
4228 4229 table.code-difftable .code {
4229 4230 display: block;
4230 4231 width: 100%;
4231 4232 }
4232 4233 table.code-difftable .code td {
4233 4234 margin: 0;
4234 4235 padding: 0;
4235 4236 }
4236 4237 table.code-difftable .code pre {
4237 4238 margin: 0 0 0 12px;
4238 4239 padding: 0;
4239 4240 min-height: 17px;
4240 4241 line-height: 17px;
4241 4242 white-space: pre-wrap;
4242 4243 }
4243 4244
4244 4245 table.code-difftable .del .code pre:before {
4245 4246 content: "-";
4246 4247 color: #800;
4247 4248 float: left;
4248 4249 left: -1em;
4249 4250 position: relative;
4250 4251 width: 0;
4251 4252 }
4252 4253
4253 4254 table.code-difftable .add .code pre:before {
4254 4255 content: "+";
4255 4256 color: #080;
4256 4257 float: left;
4257 4258 left: -1em;
4258 4259 position: relative;
4259 4260 width: 0;
4260 4261 }
4261 4262
4262 4263 table.code-difftable .unmod .code pre:before {
4263 4264 content: " ";
4264 4265 float: left;
4265 4266 left: -1em;
4266 4267 position: relative;
4267 4268 width: 0;
4268 4269 }
4269 4270
4270 4271 .add-bubble {
4271 4272 position: relative;
4272 4273 display: none;
4273 4274 float: left;
4274 4275 width: 0px;
4275 4276 height: 0px;
4276 4277 left: -8px;
4277 4278 box-sizing: border-box;
4278 4279 }
4279 4280
4280 4281 /* comment bubble, only visible when in a commentable diff */
4281 4282 .commentable-diff tr.line.add:hover td .add-bubble,
4282 4283 .commentable-diff tr.line.del:hover td .add-bubble,
4283 4284 .commentable-diff tr.line.unmod:hover td .add-bubble {
4284 4285 display: block;
4285 4286 z-index: 1;
4286 4287 }
4287 4288
4288 4289 .add-bubble div {
4289 4290 background: #577632;
4290 4291 width: 16px;
4291 4292 height: 16px;
4292 4293 cursor: pointer;
4293 4294 padding: 0 2px 2px 0.5px;
4294 4295 border: 1px solid #577632;
4295 4296 border-radius: 3px;
4296 4297 box-sizing: border-box;
4297 4298 }
4298 4299
4299 4300 .add-bubble div:before {
4300 4301 font-size: 14px;
4301 4302 color: #ffffff;
4302 4303 font-family: "kallithea";
4303 4304 content: '\1f5ea';
4304 4305 }
4305 4306
4306 4307 .add-bubble div:hover {
4307 4308 transform: scale(1.2, 1.2);
4308 4309 }
4309 4310
4310 4311 /* show some context of link targets - but only works when the link target
4311 4312 can be extended with any visual difference */
4312 4313 div.comment:target:before {
4313 4314 display: block;
4314 4315 height: 100px;
4315 4316 margin: -100px 0 0;
4316 4317 content: "";
4317 4318 }
4318 4319
4319 4320 div.comment:target>.comment-wrapp {
4320 4321 border: solid 2px #ee0 !important;
4321 4322 margin: 2px 2px 4px 4px;
4322 4323 }
4323 4324
4324 4325 .lineno:target a {
4325 4326 border: solid 2px #ee0 !important;
4326 4327 margin: -2px;
4327 4328 }
4328 4329
4329 4330 .btn-image-diff-show,
4330 4331 .btn-image-diff-swap {
4331 4332 margin: 5px;
4332 4333 }
4333 4334
4334 4335 .img-diff {
4335 4336 max-width: 45%;
4336 4337 height: auto;
4337 4338 margin: 5px;
4338 4339 /* http://lea.verou.me/demos/css3-patterns.html */
4339 4340 background-image:
4340 4341 linear-gradient(45deg, #888 25%, transparent 25%, transparent),
4341 4342 linear-gradient(-45deg, #888 25%, transparent 25%, transparent),
4342 4343 linear-gradient(45deg, transparent 75%, #888 75%),
4343 4344 linear-gradient(-45deg, transparent 75%, #888 75%);
4344 4345 background-size: 10px 10px;
4345 4346 background-color: #999;
4346 4347 }
4347 4348
4348 4349 .img-preview {
4349 4350 max-width: 100%;
4350 4351 height: auto;
4351 4352 margin: 5px;
4352 4353 }
4353 4354
4354 4355 div.comment-prev-next-links div.prev-comment,
4355 4356 div.comment-prev-next-links div.next-comment {
4356 4357 display: inline-block;
4357 4358 min-width: 150px;
4358 4359 margin: 3px 6px;
4359 4360 }
4360 4361
4361 4362 body table.dataTable thead .sorting {
4362 4363 background-image: none;
4363 4364 }
4364 4365 body table.dataTable thead .sorting_asc {
4365 4366 background-image: none;
4366 4367 }
4367 4368 body table.dataTable thead .sorting_desc {
4368 4369 background-image: none;
4369 4370 }
4370 4371 body table.dataTable thead .sorting_asc_disabled {
4371 4372 background-image: none;
4372 4373 }
4373 4374 body table.dataTable thead .sorting_desc_disabled {
4374 4375 background-image: none;
4375 4376 }
4376 4377
4377 4378 body table.dataTable thead .sorting_asc::after {
4378 4379 font-family: "kallithea";
4379 4380 content: "\23f6";
4380 4381 }
4381 4382 body table.dataTable thead .sorting_desc::after {
4382 4383 font-family: "kallithea";
4383 4384 content: "\23f7";
4384 4385 }
4385 4386
4386 4387 .dataTables_wrapper .dataTables_left {
4387 4388 float: left !important;
4388 4389 }
4389 4390
4390 4391 .dataTables_wrapper .dataTables_right {
4391 4392 float: right;
4392 4393 }
4393 4394
4394 4395 .dataTables_wrapper .dataTables_right > div {
4395 4396 padding-left: 30px;
4396 4397 }
4397 4398
4398 4399 .dataTables_wrapper .dataTables_info {
4399 4400 clear: none;
4400 4401 padding-top: 1em;
4401 4402 }
4402 4403
4403 4404 .dataTables_wrapper .dataTables_paginate {
4404 4405 padding-top: 0;
4405 4406 }
4406 4407
4407 4408 .dataTables_wrapper .dataTables_paginate > a.paginate_button {
4408 4409 padding-top: 1em;
4409 4410 border: 0 !important;
4410 4411 }
4411 4412
4412 4413 .text-muted {
4413 4414 color: #777777;
4414 4415 }
4415 4416
4416 4417 .grid_edit a {
4417 4418 text-decoration: none;
4418 4419 }
4419 4420
4420 4421 .changes_txt {
4421 4422 clear: both;
4422 4423 }
4423 4424
4424 4425 .text-nowrap {
4425 4426 white-space: nowrap;
4426 4427 }
4427 4428
4428 4429 div.codeblock div.code-header div.author {
4429 4430 height: auto;
4430 4431 min-height: 25px;
4431 4432 }
4432 4433
4433 4434 ul.user_group_member li {
4434 4435 clear: both;
4435 4436 }
General Comments 0
You need to be logged in to leave comments. Login now