##// END OF EJS Templates
template fix for changeset ranges
marcink -
r982:134e169f beta
parent child Browse files
Show More
@@ -1,2419 +1,2424 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 font-size:12px;
17 17 color:#000;
18 18 margin:0;
19 19 padding:0;
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:#003367;
53 53 text-decoration:none;
54 54 cursor:pointer;
55 55 font-weight:700;
56 56 }
57 57
58 58 a:hover {
59 59 color:#316293;
60 60 text-decoration:underline;
61 61 }
62 62
63 63 h1,h2,h3,h4,h5,h6 {
64 64 color:#292929;
65 65 font-weight:700;
66 66 }
67 67
68 68 h1 {
69 69 font-size:22px;
70 70 }
71 71
72 72 h2 {
73 73 font-size:20px;
74 74 }
75 75
76 76 h3 {
77 77 font-size:18px;
78 78 }
79 79
80 80 h4 {
81 81 font-size:16px;
82 82 }
83 83
84 84 h5 {
85 85 font-size:14px;
86 86 }
87 87
88 88 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 .top-left-rounded-corner {
160 160 -webkit-border-top-left-radius: 8px;
161 161 -khtml-border-radius-topleft: 8px;
162 162 -moz-border-radius-topleft: 8px;
163 163 border-top-left-radius: 8px;
164 164 }
165 165
166 166 .top-right-rounded-corner {
167 167 -webkit-border-top-right-radius: 8px;
168 168 -khtml-border-radius-topright: 8px;
169 169 -moz-border-radius-topright: 8px;
170 170 border-top-right-radius: 8px;
171 171 }
172 172
173 173 .bottom-left-rounded-corner {
174 174 -webkit-border-bottom-left-radius: 8px;
175 175 -khtml-border-radius-bottomleft: 8px;
176 176 -moz-border-radius-bottomleft: 8px;
177 177 border-bottom-left-radius: 8px;
178 178 }
179 179
180 180 .bottom-right-rounded-corner {
181 181 -webkit-border-bottom-right-radius: 8px;
182 182 -khtml-border-radius-bottomright: 8px;
183 183 -moz-border-radius-bottomright: 8px;
184 184 border-bottom-right-radius: 8px;
185 185 }
186 186
187 187
188 188 #header {
189 189 margin:0;
190 190 padding:0 30px;
191 191 }
192 192
193 193
194 194 #header ul#logged-user{
195 195 margin-bottom:5px !important;
196 196 -webkit-border-radius: 0px 0px 8px 8px;
197 197 -khtml-border-radius: 0px 0px 8px 8px;
198 198 -moz-border-radius: 0px 0px 8px 8px;
199 199 border-radius: 0px 0px 8px 8px;
200 200 height:37px;
201 201 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367
202 202 }
203 203
204 204 #header ul#logged-user li {
205 205 list-style:none;
206 206 float:left;
207 207 margin:8px 0 0;
208 208 padding:4px 12px;
209 209 border-left: 1px solid #316293;
210 210 }
211 211
212 212 #header ul#logged-user li.first {
213 213 border-left:none;
214 214 margin:4px;
215 215 }
216 216
217 217 #header ul#logged-user li.first div.gravatar {
218 218 margin-top:-2px;
219 219 }
220 220
221 221 #header ul#logged-user li.first div.account {
222 222 padding-top:4px;
223 223 float:left;
224 224 }
225 225
226 226 #header ul#logged-user li.last {
227 227 border-right:none;
228 228 }
229 229
230 230 #header ul#logged-user li a {
231 231 color:#fff;
232 232 font-weight:700;
233 233 text-decoration:none;
234 234 }
235 235
236 236 #header ul#logged-user li a:hover {
237 237 text-decoration:underline;
238 238 }
239 239
240 240 #header ul#logged-user li.highlight a {
241 241 color:#fff;
242 242 }
243 243
244 244 #header ul#logged-user li.highlight a:hover {
245 245 color:#FFF;
246 246 }
247 247
248 248 #header #header-inner {
249 249 height:40px;
250 250 clear:both;
251 251 position:relative;
252 252 background:#003367 url("../images/header_inner.png") repeat-x;
253 253 border-bottom:2px solid #fff;
254 254 margin:0;
255 255 padding:0;
256 256 }
257 257
258 258 #header #header-inner #home a {
259 259 height:40px;
260 260 width:46px;
261 261 display:block;
262 262 background:url("../images/button_home.png");
263 263 background-position:0 0;
264 264 margin:0;
265 265 padding:0;
266 266 }
267 267
268 268 #header #header-inner #home a:hover {
269 269 background-position:0 -40px;
270 270 }
271 271
272 272 #header #header-inner #logo h1 {
273 273 color:#FFF;
274 274 font-size:18px;
275 275 margin:10px 0 0 13px;
276 276 padding:0;
277 277 }
278 278
279 279 #header #header-inner #logo a {
280 280 color:#fff;
281 281 text-decoration:none;
282 282 }
283 283
284 284 #header #header-inner #logo a:hover {
285 285 color:#bfe3ff;
286 286 }
287 287
288 288 #header #header-inner #quick,#header #header-inner #quick ul {
289 289 position:relative;
290 290 float:right;
291 291 list-style-type:none;
292 292 list-style-position:outside;
293 293 margin:10px 5px 0 0;
294 294 padding:0;
295 295 }
296 296
297 297 #header #header-inner #quick li {
298 298 position:relative;
299 299 float:left;
300 300 margin:0 5px 0 0;
301 301 padding:0;
302 302 }
303 303
304 304 #header #header-inner #quick li a {
305 305 top:0;
306 306 left:0;
307 307 height:1%;
308 308 display:block;
309 309 clear:both;
310 310 overflow:hidden;
311 311 color:#FFF;
312 312 font-weight:700;
313 313 text-decoration:none;
314 314 background:#369 url("../../images/quick_l.png") no-repeat top left;
315 315 padding:0;
316 316 }
317 317
318 318 #header #header-inner #quick li span.short {
319 319 padding:9px 6px 8px 6px;
320 320 }
321 321
322 322 #header #header-inner #quick li span {
323 323 top:0;
324 324 right:0;
325 325 height:1%;
326 326 display:block;
327 327 float:left;
328 328 background:url("../../images/quick_r.png") no-repeat top right;
329 329 border-left:1px solid #3f6f9f;
330 330 margin:0;
331 331 padding:10px 12px 8px 10px;
332 332 }
333 333
334 334 #header #header-inner #quick li span.normal {
335 335 border:none;
336 336 padding:10px 12px 8px;
337 337 }
338 338
339 339 #header #header-inner #quick li span.icon {
340 340 top:0;
341 341 left:0;
342 342 border-left:none;
343 343 background:url("../../images/quick_l.png") no-repeat top left;
344 344 border-right:1px solid #2e5c89;
345 345 padding:8px 8px 4px;
346 346 }
347 347
348 348 #header #header-inner #quick li span.icon_short {
349 349 top:0;
350 350 left:0;
351 351 border-left:none;
352 352 background:url("../../images/quick_l.png") no-repeat top left;
353 353 border-right:1px solid #2e5c89;
354 354 padding:9px 4px 4px;
355 355 }
356 356
357 357 #header #header-inner #quick li a:hover {
358 358 background:#4e4e4e url("../../images/quick_l_selected.png") no-repeat top left;
359 359 }
360 360
361 361 #header #header-inner #quick li a:hover span {
362 362 border-left:1px solid #545454;
363 363 background:url("../../images/quick_r_selected.png") no-repeat top right;
364 364 }
365 365
366 366 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short {
367 367 border-left:none;
368 368 border-right:1px solid #464646;
369 369 background:url("../../images/quick_l_selected.png") no-repeat top left;
370 370 }
371 371
372 372
373 373 #header #header-inner #quick ul {
374 374 top:29px;
375 375 right:0;
376 376 min-width:200px;
377 377 display:none;
378 378 position:absolute;
379 379 background:#FFF;
380 380 border:1px solid #666;
381 381 border-top:1px solid #003367;
382 382 z-index:100;
383 383 margin:0;
384 384 padding:0;
385 385 }
386 386
387 387 #header #header-inner #quick ul.repo_switcher {
388 388 max-height:275px;
389 389 overflow-x:hidden;
390 390 overflow-y:auto;
391 391 }
392 392
393 393 #header #header-inner #quick .repo_switcher_type{
394 394 position:absolute;
395 395 left:0;
396 396 top:9px;
397 397
398 398 }
399 399 #header #header-inner #quick li ul li {
400 400 border-bottom:1px solid #ddd;
401 401 }
402 402
403 403 #header #header-inner #quick li ul li a {
404 404 width:182px;
405 405 height:auto;
406 406 display:block;
407 407 float:left;
408 408 background:#FFF;
409 409 color:#003367;
410 410 font-weight:400;
411 411 margin:0;
412 412 padding:7px 9px;
413 413 }
414 414
415 415 #header #header-inner #quick li ul li a:hover {
416 416 color:#000;
417 417 background:#FFF;
418 418 }
419 419
420 420 #header #header-inner #quick ul ul {
421 421 top:auto;
422 422 }
423 423
424 424 #header #header-inner #quick li ul ul {
425 425 right:200px;
426 426 max-height:275px;
427 427 overflow:auto;
428 428 overflow-x:hidden;
429 429 white-space:normal;
430 430 }
431 431
432 432 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover {
433 433 background:url("../images/icons/book.png") no-repeat scroll 4px 9px #FFF;
434 434 width:167px;
435 435 margin:0;
436 436 padding:12px 9px 7px 24px;
437 437 }
438 438
439 439 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover {
440 440 background:url("../images/icons/lock.png") no-repeat scroll 4px 9px #FFF;
441 441 min-width:167px;
442 442 margin:0;
443 443 padding:12px 9px 7px 24px;
444 444 }
445 445
446 446 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover {
447 447 background:url("../images/icons/lock_open.png") no-repeat scroll 4px 9px #FFF;
448 448 min-width:167px;
449 449 margin:0;
450 450 padding:12px 9px 7px 24px;
451 451 }
452 452
453 453 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover {
454 454 background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF;
455 455 min-width:167px;
456 456 margin:0 0 0 14px;
457 457 padding:12px 9px 7px 24px;
458 458 }
459 459
460 460 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover {
461 461 background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF;
462 462 min-width:167px;
463 463 margin:0 0 0 14px;
464 464 padding:12px 9px 7px 24px;
465 465 }
466 466
467 467 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover {
468 468 background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF;
469 469 width:167px;
470 470 margin:0;
471 471 padding:12px 9px 7px 24px;
472 472 }
473 473
474 474 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover {
475 475 background:#FFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
476 476 width:167px;
477 477 margin:0;
478 478 padding:12px 9px 7px 24px;
479 479 }
480 480
481 481 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover {
482 482 background:#FFF url("../images/icons/group_edit.png") no-repeat 4px 9px;
483 483 width:167px;
484 484 margin:0;
485 485 padding:12px 9px 7px 24px;
486 486 }
487 487
488 488 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover {
489 489 background:#FFF url("../images/icons/cog.png") no-repeat 4px 9px;
490 490 width:167px;
491 491 margin:0;
492 492 padding:12px 9px 7px 24px;
493 493 }
494 494
495 495 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover {
496 496 background:#FFF url("../images/icons/key.png") no-repeat 4px 9px;
497 497 width:167px;
498 498 margin:0;
499 499 padding:12px 9px 7px 24px;
500 500 }
501 501
502 502 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover {
503 503 background:#FFF url("../images/icons/server_key.png") no-repeat 4px 9px;
504 504 width:167px;
505 505 margin:0;
506 506 padding:12px 9px 7px 24px;
507 507 }
508 508
509 509 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover {
510 510 background:#FFF url("../images/icons/arrow_divide.png") no-repeat 4px 9px;
511 511 width:167px;
512 512 margin:0;
513 513 padding:12px 9px 7px 24px;
514 514 }
515 515
516 516 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover {
517 517 background:#FFF url("../images/icons/search_16.png") no-repeat 4px 9px;
518 518 width:167px;
519 519 margin:0;
520 520 padding:12px 9px 7px 24px;
521 521 }
522 522
523 523 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover {
524 524 background:#FFF url("../images/icons/delete.png") no-repeat 4px 9px;
525 525 width:167px;
526 526 margin:0;
527 527 padding:12px 9px 7px 24px;
528 528 }
529 529
530 530 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover {
531 531 background:#FFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
532 532 width:167px;
533 533 margin:0;
534 534 padding:12px 9px 7px 24px;
535 535 }
536 536
537 537 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover {
538 538 background:#FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
539 539 width:167px;
540 540 margin:0;
541 541 padding:12px 9px 7px 24px;
542 542 }
543 543
544 544 #header #header-inner #quick li ul li a.admin,#header #header-inner #quick li ul li a.admin:hover {
545 545 background:#FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
546 546 width:167px;
547 547 margin:0;
548 548 padding:12px 9px 7px 24px;
549 549 }
550 550
551 551 #content #left {
552 552 left:0;
553 553 width:280px;
554 554 position:absolute;
555 555 }
556 556
557 557 #content #right {
558 558 margin:0 60px 10px 290px;
559 559 }
560 560
561 561 #content div.box {
562 562 clear:both;
563 563 overflow:hidden;
564 564 background:#fff;
565 565 margin:0 0 10px;
566 566 padding:0 0 10px;
567 567 }
568 568
569 569 #content div.box-left {
570 570 width:49%;
571 571 clear:none;
572 572 float:left;
573 573 margin:0 0 10px;
574 574 }
575 575
576 576 #content div.box-right {
577 577 width:49%;
578 578 clear:none;
579 579 float:right;
580 580 margin:0 0 10px;
581 581 }
582 582
583 583 #content div.box div.title {
584 584 clear:both;
585 585 overflow:hidden;
586 586 background:#369 url("../images/header_inner.png") repeat-x;
587 587 margin:0 0 20px;
588 588 padding:0;
589 589 }
590 590
591 591 #content div.box div.title h5 {
592 592 float:left;
593 593 border:none;
594 594 color:#fff;
595 595 text-transform:uppercase;
596 596 margin:0;
597 597 padding:11px 0 11px 10px;
598 598 }
599 599
600 600 #content div.box div.title ul.links li {
601 601 list-style:none;
602 602 float:left;
603 603 margin:0;
604 604 padding:0;
605 605 }
606 606
607 607 #content div.box div.title ul.links li a {
608 608 height:1%;
609 609 display:block;
610 610 float:left;
611 611 border-left:1px solid #316293;
612 612 color:#fff;
613 613 font-size:11px;
614 614 font-weight:700;
615 615 text-decoration:none;
616 616 margin:0;
617 617 padding:13px 16px 12px;
618 618 }
619 619
620 620 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6 {
621 621 clear:both;
622 622 overflow:hidden;
623 623 border-bottom:1px solid #DDD;
624 624 margin:10px 20px;
625 625 padding:0 0 15px;
626 626 }
627 627
628 628 #content div.box p {
629 629 color:#5f5f5f;
630 630 font-size:12px;
631 631 line-height:150%;
632 632 margin:0 24px 10px;
633 633 padding:0;
634 634 }
635 635
636 636 #content div.box blockquote {
637 637 border-left:4px solid #DDD;
638 638 color:#5f5f5f;
639 639 font-size:11px;
640 640 line-height:150%;
641 641 margin:0 34px;
642 642 padding:0 0 0 14px;
643 643 }
644 644
645 645 #content div.box blockquote p {
646 646 margin:10px 0;
647 647 padding:0;
648 648 }
649 649
650 650 #content div.box dl {
651 651 margin:10px 24px;
652 652 }
653 653
654 654 #content div.box dt {
655 655 font-size:12px;
656 656 margin:0;
657 657 }
658 658
659 659 #content div.box dd {
660 660 font-size:12px;
661 661 margin:0;
662 662 padding:8px 0 8px 15px;
663 663 }
664 664
665 665 #content div.box li {
666 666 font-size:12px;
667 667 padding:4px 0;
668 668 }
669 669
670 670 #content div.box ul.disc,#content div.box ul.circle {
671 671 margin:10px 24px 10px 38px;
672 672 }
673 673
674 674 #content div.box ul.square {
675 675 margin:10px 24px 10px 40px;
676 676 }
677 677
678 678 #content div.box img.left {
679 679 border:none;
680 680 float:left;
681 681 margin:10px 10px 10px 0;
682 682 }
683 683
684 684 #content div.box img.right {
685 685 border:none;
686 686 float:right;
687 687 margin:10px 0 10px 10px;
688 688 }
689 689
690 690 #content div.box div.messages {
691 691 clear:both;
692 692 overflow:hidden;
693 693 margin:0 20px;
694 694 padding:0;
695 695 }
696 696
697 697 #content div.box div.message {
698 698 clear:both;
699 699 overflow:hidden;
700 700 margin:0;
701 701 padding:10px 0;
702 702 }
703 703
704 704 #content div.box div.message a {
705 705 font-weight:400 !important;
706 706 }
707 707
708 708 #content div.box div.message div.image {
709 709 float:left;
710 710 margin:9px 0 0 5px;
711 711 padding:6px;
712 712 }
713 713
714 714 #content div.box div.message div.image img {
715 715 vertical-align:middle;
716 716 margin:0;
717 717 }
718 718
719 719 #content div.box div.message div.text {
720 720 float:left;
721 721 margin:0;
722 722 padding:9px 6px;
723 723 }
724 724
725 725 #content div.box div.message div.dismiss a {
726 726 height:16px;
727 727 width:16px;
728 728 display:block;
729 729 background:url("../images/icons/cross.png") no-repeat;
730 730 margin:15px 14px 0 0;
731 731 padding:0;
732 732 }
733 733
734 734 #content div.box div.message div.text h1,#content div.box div.message div.text h2,#content div.box div.message div.text h3,#content div.box div.message div.text h4,#content div.box div.message div.text h5,#content div.box div.message div.text h6 {
735 735 border:none;
736 736 margin:0;
737 737 padding:0;
738 738 }
739 739
740 740 #content div.box div.message div.text span {
741 741 height:1%;
742 742 display:block;
743 743 margin:0;
744 744 padding:5px 0 0;
745 745 }
746 746
747 747 #content div.box div.message-error {
748 748 height:1%;
749 749 clear:both;
750 750 overflow:hidden;
751 751 background:#FBE3E4;
752 752 border:1px solid #FBC2C4;
753 753 color:#860006;
754 754 }
755 755
756 756 #content div.box div.message-error h6 {
757 757 color:#860006;
758 758 }
759 759
760 760 #content div.box div.message-warning {
761 761 height:1%;
762 762 clear:both;
763 763 overflow:hidden;
764 764 background:#FFF6BF;
765 765 border:1px solid #FFD324;
766 766 color:#5f5200;
767 767 }
768 768
769 769 #content div.box div.message-warning h6 {
770 770 color:#5f5200;
771 771 }
772 772
773 773 #content div.box div.message-notice {
774 774 height:1%;
775 775 clear:both;
776 776 overflow:hidden;
777 777 background:#8FBDE0;
778 778 border:1px solid #6BACDE;
779 779 color:#003863;
780 780 }
781 781
782 782 #content div.box div.message-notice h6 {
783 783 color:#003863;
784 784 }
785 785
786 786 #content div.box div.message-success {
787 787 height:1%;
788 788 clear:both;
789 789 overflow:hidden;
790 790 background:#E6EFC2;
791 791 border:1px solid #C6D880;
792 792 color:#4e6100;
793 793 }
794 794
795 795 #content div.box div.message-success h6 {
796 796 color:#4e6100;
797 797 }
798 798
799 799 #content div.box div.form div.fields div.field {
800 800 height:1%;
801 801 border-bottom:1px solid #DDD;
802 802 clear:both;
803 803 margin:0;
804 804 padding:10px 0;
805 805 }
806 806
807 807 #content div.box div.form div.fields div.field-first {
808 808 padding:0 0 10px;
809 809 }
810 810
811 811 #content div.box div.form div.fields div.field-noborder {
812 812 border-bottom:0 !important;
813 813 }
814 814
815 815 #content div.box div.form div.fields div.field span.error-message {
816 816 height:1%;
817 817 display:inline-block;
818 818 color:red;
819 819 margin:8px 0 0 4px;
820 820 padding:0;
821 821 }
822 822
823 823 #content div.box div.form div.fields div.field span.success {
824 824 height:1%;
825 825 display:block;
826 826 color:#316309;
827 827 margin:8px 0 0;
828 828 padding:0;
829 829 }
830 830
831 831 #content div.box div.form div.fields div.field div.label {
832 832 left:80px;
833 833 width:auto;
834 834 position:absolute;
835 835 margin:0;
836 836 padding:8px 0 0 5px;
837 837 }
838 838
839 839 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label {
840 840 clear:both;
841 841 overflow:hidden;
842 842 left:0;
843 843 width:auto;
844 844 position:relative;
845 845 margin:0;
846 846 padding:0 0 8px;
847 847 }
848 848
849 849 #content div.box div.form div.fields div.field div.label-select {
850 850 padding:5px 0 0 5px;
851 851 }
852 852
853 853 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select {
854 854 padding:0 0 8px;
855 855 }
856 856
857 857 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea {
858 858 padding:0 0 8px !important;
859 859 }
860 860
861 861 #content div.box div.form div.fields div.field div.label label {
862 862 color:#393939;
863 863 font-weight:700;
864 864 }
865 865
866 866 #content div.box div.form div.fields div.field div.input {
867 867 margin:0 0 0 200px;
868 868 }
869 869 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input {
870 870 margin:0 0 0 0px;
871 871 }
872 872
873 873 #content div.box div.form div.fields div.field div.input input {
874 874 background:#FFF;
875 875 border-top:1px solid #b3b3b3;
876 876 border-left:1px solid #b3b3b3;
877 877 border-right:1px solid #eaeaea;
878 878 border-bottom:1px solid #eaeaea;
879 879 color:#000;
880 880 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
881 881 font-size:11px;
882 882 margin:0;
883 883 padding:7px 7px 6px;
884 884 }
885 885
886 886
887 887
888 888 #content div.box div.form div.fields div.field div.input input.small {
889 889 width:30%;
890 890 }
891 891
892 892 #content div.box div.form div.fields div.field div.input input.medium {
893 893 width:55%;
894 894 }
895 895
896 896 #content div.box div.form div.fields div.field div.input input.large {
897 897 width:85%;
898 898 }
899 899
900 900 #content div.box div.form div.fields div.field div.input input.date {
901 901 width:177px;
902 902 }
903 903
904 904 #content div.box div.form div.fields div.field div.input input.button {
905 905 background:#D4D0C8;
906 906 border-top:1px solid #FFF;
907 907 border-left:1px solid #FFF;
908 908 border-right:1px solid #404040;
909 909 border-bottom:1px solid #404040;
910 910 color:#000;
911 911 margin:0;
912 912 padding:4px 8px;
913 913 }
914 914
915 915 #content div.box div.form div.fields div.field div.textarea {
916 916 border-top:1px solid #b3b3b3;
917 917 border-left:1px solid #b3b3b3;
918 918 border-right:1px solid #eaeaea;
919 919 border-bottom:1px solid #eaeaea;
920 920 margin:0 0 0 200px;
921 921 padding:10px;
922 922 }
923 923
924 924 #content div.box div.form div.fields div.field div.textarea-editor {
925 925 border:1px solid #ddd;
926 926 padding:0;
927 927 }
928 928
929 929 #content div.box div.form div.fields div.field div.textarea textarea {
930 930 width:100%;
931 931 height:220px;
932 932 overflow:hidden;
933 933 background:#FFF;
934 934 color:#000;
935 935 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
936 936 font-size:11px;
937 937 outline:none;
938 938 border-width:0;
939 939 margin:0;
940 940 padding:0;
941 941 }
942 942
943 943 #content div.box-left div.form div.fields div.field div.textarea textarea,#content div.box-right div.form div.fields div.field div.textarea textarea {
944 944 width:100%;
945 945 height:100px;
946 946 }
947 947
948 948 #content div.box div.form div.fields div.field div.textarea table {
949 949 width:100%;
950 950 border:none;
951 951 margin:0;
952 952 padding:0;
953 953 }
954 954
955 955 #content div.box div.form div.fields div.field div.textarea table td {
956 956 background:#DDD;
957 957 border:none;
958 958 padding:0;
959 959 }
960 960
961 961 #content div.box div.form div.fields div.field div.textarea table td table {
962 962 width:auto;
963 963 border:none;
964 964 margin:0;
965 965 padding:0;
966 966 }
967 967
968 968 #content div.box div.form div.fields div.field div.textarea table td table td {
969 969 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
970 970 font-size:11px;
971 971 padding:5px 5px 5px 0;
972 972 }
973 973
974 974 #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus {
975 975 background:#f6f6f6;
976 976 border-color:#666;
977 977 }
978 978
979 979 div.form div.fields div.field div.button {
980 980 margin:0;
981 981 padding:0 0 0 8px;
982 982 }
983 983
984 984 div.form div.fields div.field div.highlight .ui-button {
985 985 background:#4e85bb url("../images/button_highlight.png") repeat-x;
986 986 border-top:1px solid #5c91a4;
987 987 border-left:1px solid #2a6f89;
988 988 border-right:1px solid #2b7089;
989 989 border-bottom:1px solid #1a6480;
990 990 color:#FFF;
991 991 margin:0;
992 992 padding:6px 12px;
993 993 }
994 994
995 995 div.form div.fields div.field div.highlight .ui-state-hover {
996 996 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
997 997 border-top:1px solid #78acbf;
998 998 border-left:1px solid #34819e;
999 999 border-right:1px solid #35829f;
1000 1000 border-bottom:1px solid #257897;
1001 1001 color:#FFF;
1002 1002 margin:0;
1003 1003 padding:6px 12px;
1004 1004 }
1005 1005
1006 1006 #content div.box div.form div.fields div.buttons div.highlight input.ui-button {
1007 1007 background:#4e85bb url("../../images/button_highlight.png") repeat-x;
1008 1008 border-top:1px solid #5c91a4;
1009 1009 border-left:1px solid #2a6f89;
1010 1010 border-right:1px solid #2b7089;
1011 1011 border-bottom:1px solid #1a6480;
1012 1012 color:#fff;
1013 1013 margin:0;
1014 1014 padding:6px 12px;
1015 1015 }
1016 1016
1017 1017 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover {
1018 1018 background:#46a0c1 url("../../images/button_highlight_selected.png") repeat-x;
1019 1019 border-top:1px solid #78acbf;
1020 1020 border-left:1px solid #34819e;
1021 1021 border-right:1px solid #35829f;
1022 1022 border-bottom:1px solid #257897;
1023 1023 color:#fff;
1024 1024 margin:0;
1025 1025 padding:6px 12px;
1026 1026 }
1027 1027
1028 1028 #content div.box table {
1029 1029 width:100%;
1030 1030 border-collapse:collapse;
1031 1031 margin:0;
1032 1032 padding:0;
1033 1033 }
1034 1034
1035 1035 #content div.box table th {
1036 1036 background:#eee;
1037 1037 border-bottom:1px solid #ddd;
1038 1038 padding:5px 0px 5px 5px;
1039 1039 }
1040 1040
1041 1041 #content div.box table th.left {
1042 1042 text-align:left;
1043 1043 }
1044 1044
1045 1045 #content div.box table th.right {
1046 1046 text-align:right;
1047 1047 }
1048 1048
1049 1049 #content div.box table th.center {
1050 1050 text-align:center;
1051 1051 }
1052 1052
1053 1053 #content div.box table th.selected {
1054 1054 vertical-align:middle;
1055 1055 padding:0;
1056 1056 }
1057 1057
1058 1058 #content div.box table td {
1059 1059 background:#fff;
1060 1060 border-bottom:1px solid #cdcdcd;
1061 1061 vertical-align:middle;
1062 1062 padding:5px;
1063 1063 }
1064 1064
1065 1065 #content div.box table tr.selected td {
1066 1066 background:#FFC;
1067 1067 }
1068 1068
1069 1069 #content div.box table td.selected {
1070 1070 width:3%;
1071 1071 text-align:center;
1072 1072 vertical-align:middle;
1073 1073 padding:0;
1074 1074 }
1075 1075
1076 1076 #content div.box table td.action {
1077 1077 width:45%;
1078 1078 text-align:left;
1079 1079 }
1080 1080
1081 1081 #content div.box table td.date {
1082 1082 width:33%;
1083 1083 text-align:center;
1084 1084 }
1085 1085
1086 1086 #content div.box div.action {
1087 1087 float:right;
1088 1088 background:#FFF;
1089 1089 text-align:right;
1090 1090 margin:10px 0 0;
1091 1091 padding:0;
1092 1092 }
1093 1093
1094 1094 #content div.box div.action select {
1095 1095 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1096 1096 font-size:11px;
1097 1097 margin:0;
1098 1098 }
1099 1099
1100 1100 #content div.box div.action .ui-selectmenu {
1101 1101 margin:0;
1102 1102 padding:0;
1103 1103 }
1104 1104
1105 1105 #content div.box div.pagination {
1106 1106 height:1%;
1107 1107 clear:both;
1108 1108 overflow:hidden;
1109 1109 margin:10px 0 0;
1110 1110 padding:0;
1111 1111 }
1112 1112
1113 1113 #content div.box div.pagination ul.pager {
1114 1114 float:right;
1115 1115 text-align:right;
1116 1116 margin:0;
1117 1117 padding:0;
1118 1118 }
1119 1119
1120 1120 #content div.box div.pagination ul.pager li {
1121 1121 height:1%;
1122 1122 float:left;
1123 1123 list-style:none;
1124 1124 background:#ebebeb url("../images/pager.png") repeat-x;
1125 1125 border-top:1px solid #dedede;
1126 1126 border-left:1px solid #cfcfcf;
1127 1127 border-right:1px solid #c4c4c4;
1128 1128 border-bottom:1px solid #c4c4c4;
1129 1129 color:#4A4A4A;
1130 1130 font-weight:700;
1131 1131 margin:0 0 0 4px;
1132 1132 padding:0;
1133 1133 }
1134 1134
1135 1135 #content div.box div.pagination ul.pager li.separator {
1136 1136 padding:6px;
1137 1137 }
1138 1138
1139 1139 #content div.box div.pagination ul.pager li.current {
1140 1140 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1141 1141 border-top:1px solid #ccc;
1142 1142 border-left:1px solid #bebebe;
1143 1143 border-right:1px solid #b1b1b1;
1144 1144 border-bottom:1px solid #afafaf;
1145 1145 color:#515151;
1146 1146 padding:6px;
1147 1147 }
1148 1148
1149 1149 #content div.box div.pagination ul.pager li a {
1150 1150 height:1%;
1151 1151 display:block;
1152 1152 float:left;
1153 1153 color:#515151;
1154 1154 text-decoration:none;
1155 1155 margin:0;
1156 1156 padding:6px;
1157 1157 }
1158 1158
1159 1159 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active {
1160 1160 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1161 1161 border-top:1px solid #ccc;
1162 1162 border-left:1px solid #bebebe;
1163 1163 border-right:1px solid #b1b1b1;
1164 1164 border-bottom:1px solid #afafaf;
1165 1165 margin:-1px;
1166 1166 }
1167 1167
1168 1168 #content div.box div.pagination-wh {
1169 1169 height:1%;
1170 1170 clear:both;
1171 1171 overflow:hidden;
1172 1172 text-align:right;
1173 1173 margin:10px 0 0;
1174 1174 padding:0;
1175 1175 }
1176 1176
1177 1177 #content div.box div.pagination-right {
1178 1178 float:right;
1179 1179 }
1180 1180
1181 1181 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot {
1182 1182 height:1%;
1183 1183 float:left;
1184 1184 background:#ebebeb url("../images/pager.png") repeat-x;
1185 1185 border-top:1px solid #dedede;
1186 1186 border-left:1px solid #cfcfcf;
1187 1187 border-right:1px solid #c4c4c4;
1188 1188 border-bottom:1px solid #c4c4c4;
1189 1189 color:#4A4A4A;
1190 1190 font-weight:700;
1191 1191 margin:0 0 0 4px;
1192 1192 padding:6px;
1193 1193 }
1194 1194
1195 1195 #content div.box div.pagination-wh span.pager_curpage {
1196 1196 height:1%;
1197 1197 float:left;
1198 1198 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1199 1199 border-top:1px solid #ccc;
1200 1200 border-left:1px solid #bebebe;
1201 1201 border-right:1px solid #b1b1b1;
1202 1202 border-bottom:1px solid #afafaf;
1203 1203 color:#515151;
1204 1204 font-weight:700;
1205 1205 margin:0 0 0 4px;
1206 1206 padding:6px;
1207 1207 }
1208 1208
1209 1209 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active {
1210 1210 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1211 1211 border-top:1px solid #ccc;
1212 1212 border-left:1px solid #bebebe;
1213 1213 border-right:1px solid #b1b1b1;
1214 1214 border-bottom:1px solid #afafaf;
1215 1215 text-decoration:none;
1216 1216 }
1217 1217
1218 1218 #content div.box div.traffic div.legend {
1219 1219 clear:both;
1220 1220 overflow:hidden;
1221 1221 border-bottom:1px solid #ddd;
1222 1222 margin:0 0 10px;
1223 1223 padding:0 0 10px;
1224 1224 }
1225 1225
1226 1226 #content div.box div.traffic div.legend h6 {
1227 1227 float:left;
1228 1228 border:none;
1229 1229 margin:0;
1230 1230 padding:0;
1231 1231 }
1232 1232
1233 1233 #content div.box div.traffic div.legend li {
1234 1234 list-style:none;
1235 1235 float:left;
1236 1236 font-size:11px;
1237 1237 margin:0;
1238 1238 padding:0 8px 0 4px;
1239 1239 }
1240 1240
1241 1241 #content div.box div.traffic div.legend li.visits {
1242 1242 border-left:12px solid #edc240;
1243 1243 }
1244 1244
1245 1245 #content div.box div.traffic div.legend li.pageviews {
1246 1246 border-left:12px solid #afd8f8;
1247 1247 }
1248 1248
1249 1249 #content div.box div.traffic table {
1250 1250 width:auto;
1251 1251 }
1252 1252
1253 1253 #content div.box div.traffic table td {
1254 1254 background:transparent;
1255 1255 border:none;
1256 1256 padding:2px 3px 3px;
1257 1257 }
1258 1258
1259 1259 #content div.box div.traffic table td.legendLabel {
1260 1260 padding:0 3px 2px;
1261 1261 }
1262 1262
1263 1263 #footer {
1264 1264 clear:both;
1265 1265 overflow:hidden;
1266 1266 text-align:right;
1267 1267 margin:0;
1268 1268 padding:0 30px 4px;
1269 1269 margin:-10px 0 0;
1270 1270 }
1271 1271
1272 1272 #footer div#footer-inner {
1273 1273 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367;
1274 1274 border-top:2px solid #FFFFFF;
1275 1275 }
1276 1276
1277 1277 #footer div#footer-inner p {
1278 1278 padding:15px 25px 15px 0;
1279 1279 color:#FFF;
1280 1280 font-weight:700;
1281 1281 }
1282 1282 #footer div#footer-inner .footer-link {
1283 1283 float:left;
1284 1284 padding-left:10px;
1285 1285 }
1286 1286 #footer div#footer-inner .footer-link a {
1287 1287 color:#FFF;
1288 1288 }
1289 1289
1290 1290 #login div.title {
1291 1291 width:420px;
1292 1292 clear:both;
1293 1293 overflow:hidden;
1294 1294 position:relative;
1295 1295 background:#003367 url("../../images/header_inner.png") repeat-x;
1296 1296 margin:0 auto;
1297 1297 padding:0;
1298 1298 }
1299 1299
1300 1300 #login div.inner {
1301 1301 width:380px;
1302 1302 background:#FFF url("../images/login.png") no-repeat top left;
1303 1303 border-top:none;
1304 1304 border-bottom:none;
1305 1305 margin:0 auto;
1306 1306 padding:20px;
1307 1307 }
1308 1308
1309 1309 #login div.form div.fields div.field div.label {
1310 1310 width:173px;
1311 1311 float:left;
1312 1312 text-align:right;
1313 1313 margin:2px 10px 0 0;
1314 1314 padding:5px 0 0 5px;
1315 1315 }
1316 1316
1317 1317 #login div.form div.fields div.field div.input input {
1318 1318 width:176px;
1319 1319 background:#FFF;
1320 1320 border-top:1px solid #b3b3b3;
1321 1321 border-left:1px solid #b3b3b3;
1322 1322 border-right:1px solid #eaeaea;
1323 1323 border-bottom:1px solid #eaeaea;
1324 1324 color:#000;
1325 1325 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1326 1326 font-size:11px;
1327 1327 margin:0;
1328 1328 padding:7px 7px 6px;
1329 1329 }
1330 1330
1331 1331 #login div.form div.fields div.buttons {
1332 1332 clear:both;
1333 1333 overflow:hidden;
1334 1334 border-top:1px solid #DDD;
1335 1335 text-align:right;
1336 1336 margin:0;
1337 1337 padding:10px 0 0;
1338 1338 }
1339 1339
1340 1340 #login div.form div.links {
1341 1341 clear:both;
1342 1342 overflow:hidden;
1343 1343 margin:10px 0 0;
1344 1344 padding:0 0 2px;
1345 1345 }
1346 1346
1347 1347 #register div.title {
1348 1348 clear:both;
1349 1349 overflow:hidden;
1350 1350 position:relative;
1351 1351 background:#003367 url("../images/header_inner.png") repeat-x;
1352 1352 margin:0 auto;
1353 1353 padding:0;
1354 1354 }
1355 1355
1356 1356 #register div.inner {
1357 1357 background:#FFF;
1358 1358 border-top:none;
1359 1359 border-bottom:none;
1360 1360 margin:0 auto;
1361 1361 padding:20px;
1362 1362 }
1363 1363
1364 1364 #register div.form div.fields div.field div.label {
1365 1365 width:135px;
1366 1366 float:left;
1367 1367 text-align:right;
1368 1368 margin:2px 10px 0 0;
1369 1369 padding:5px 0 0 5px;
1370 1370 }
1371 1371
1372 1372 #register div.form div.fields div.field div.input input {
1373 1373 width:300px;
1374 1374 background:#FFF;
1375 1375 border-top:1px solid #b3b3b3;
1376 1376 border-left:1px solid #b3b3b3;
1377 1377 border-right:1px solid #eaeaea;
1378 1378 border-bottom:1px solid #eaeaea;
1379 1379 color:#000;
1380 1380 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1381 1381 font-size:11px;
1382 1382 margin:0;
1383 1383 padding:7px 7px 6px;
1384 1384 }
1385 1385
1386 1386 #register div.form div.fields div.buttons {
1387 1387 clear:both;
1388 1388 overflow:hidden;
1389 1389 border-top:1px solid #DDD;
1390 1390 text-align:left;
1391 1391 margin:0;
1392 1392 padding:10px 0 0 150px;
1393 1393 }
1394 1394
1395 1395 #register div.form div.fields div.buttons div.highlight input.ui-button {
1396 1396 background:url("../images/button_highlight.png") repeat-x scroll 0 0 #4E85BB;
1397 1397 color:#FFF;
1398 1398 border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;
1399 1399 border-style:solid;
1400 1400 border-width:1px;
1401 1401 }
1402 1402
1403 1403 #register div.form div.activation_msg {
1404 1404 padding-top:4px;
1405 1405 padding-bottom:4px;
1406 1406 }
1407 1407
1408 1408 .trending_language_tbl,.trending_language_tbl td {
1409 1409 border:0 !important;
1410 1410 margin:0 !important;
1411 1411 padding:0 !important;
1412 1412 }
1413 1413
1414 1414 .trending_language {
1415 1415 background-color:#003367;
1416 1416 color:#FFF;
1417 1417 display:block;
1418 1418 min-width:20px;
1419 1419 text-decoration:none;
1420 1420 height:12px;
1421 1421 margin-bottom:4px;
1422 1422 margin-left:5px;
1423 1423 white-space:pre;
1424 1424 padding:3px;
1425 1425 }
1426 1426
1427 1427 h3.files_location {
1428 1428 font-size:1.8em;
1429 1429 font-weight:700;
1430 1430 border-bottom:none !important;
1431 1431 margin:10px 0 !important;
1432 1432 }
1433 1433
1434 1434 #files_data dl dt {
1435 1435 float:left;
1436 1436 width:115px;
1437 1437 margin:0 !important;
1438 1438 padding:5px;
1439 1439 }
1440 1440
1441 1441 #files_data dl dd {
1442 1442 margin:0 !important;
1443 1443 padding:5px !important;
1444 1444 }
1445 1445
1446 1446 #changeset_content {
1447 1447 border:1px solid #CCC;
1448 1448 padding:5px;
1449 1449 }
1450 1450
1451 1451 #changeset_content .container {
1452 1452 min-height:120px;
1453 1453 font-size:1.2em;
1454 1454 overflow:hidden;
1455 1455 }
1456 1456
1457 1457 #changeset_content .container .right {
1458 1458 float:right;
1459 1459 width:25%;
1460 1460 text-align:right;
1461 1461 }
1462 1462
1463 1463 #changeset_content .container .left .message {
1464 1464 font-style:italic;
1465 1465 color:#556CB5;
1466 1466 white-space:pre-wrap;
1467 1467 }
1468 1468
1469 .cs_files .cur_cs{
1470 margin:10px 2px;
1471 font-weight: bold;
1472 }
1473
1469 1474 .cs_files .cs_added {
1470 1475 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1471 1476 height:16px;
1472 1477 padding-left:20px;
1473 1478 margin-top:7px;
1474 1479 text-align:left;
1475 1480 }
1476 1481
1477 1482 .cs_files .cs_changed {
1478 1483 background:url("../images/icons/page_white_edit.png") no-repeat scroll 3px;
1479 1484 height:16px;
1480 1485 padding-left:20px;
1481 1486 margin-top:7px;
1482 1487 text-align:left;
1483 1488 }
1484 1489
1485 1490 .cs_files .cs_removed {
1486 1491 background:url("../images/icons/page_white_delete.png") no-repeat scroll 3px;
1487 1492 height:16px;
1488 1493 padding-left:20px;
1489 1494 margin-top:7px;
1490 1495 text-align:left;
1491 1496 }
1492 1497
1493 1498 #graph {
1494 1499 overflow:hidden;
1495 1500 }
1496 1501
1497 1502 #graph_nodes {
1498 1503 width:160px;
1499 1504 float:left;
1500 1505 margin-left:-50px;
1501 1506 margin-top:5px;
1502 1507 }
1503 1508
1504 1509 #graph_content {
1505 1510 width:800px;
1506 1511 float:left;
1507 1512 }
1508 1513
1509 1514 #graph_content .container_header {
1510 1515 border:1px solid #CCC;
1511 1516 padding:10px;
1512 1517 }
1513 1518 #graph_content #rev_range_container{
1514 1519 padding:10px 0px;
1515 1520 }
1516 1521 #graph_content .container {
1517 1522 border-bottom:1px solid #CCC;
1518 1523 border-left:1px solid #CCC;
1519 1524 border-right:1px solid #CCC;
1520 1525 min-height:80px;
1521 1526 overflow:hidden;
1522 1527 font-size:1.2em;
1523 1528 }
1524 1529
1525 1530 #graph_content .container .right {
1526 1531 float:right;
1527 1532 width:28%;
1528 1533 text-align:right;
1529 1534 padding-bottom:5px;
1530 1535 }
1531 1536
1532 1537 #graph_content .container .left .date {
1533 1538 font-weight:700;
1534 1539 padding-bottom:5px;
1535 1540 }
1536 1541 #graph_content .container .left .date span{
1537 1542 vertical-align: text-top;
1538 1543 }
1539 1544
1540 1545 #graph_content .container .left .message {
1541 1546 font-size:100%;
1542 1547 padding-top:3px;
1543 1548 white-space:pre-wrap;
1544 1549 }
1545 1550
1546 1551 .right div {
1547 1552 clear:both;
1548 1553 }
1549 1554
1550 1555 .right .changes .added,.changed,.removed {
1551 1556 border:1px solid #DDD;
1552 1557 display:block;
1553 1558 float:right;
1554 1559 text-align:center;
1555 1560 min-width:15px;
1556 1561 cursor: help;
1557 1562 }
1558 1563
1559 1564 .right .changes .added {
1560 1565 background:#BFB;
1561 1566 }
1562 1567
1563 1568 .right .changes .changed {
1564 1569 background:#FD8;
1565 1570 }
1566 1571
1567 1572 .right .changes .removed {
1568 1573 background:#F88;
1569 1574 }
1570 1575
1571 1576 .right .merge {
1572 1577 vertical-align:top;
1573 1578 font-size:0.75em;
1574 1579 font-weight:700;
1575 1580 }
1576 1581
1577 1582 .right .parent {
1578 1583 font-size:90%;
1579 1584 font-family:monospace;
1580 1585 }
1581 1586
1582 1587 .right .logtags .branchtag {
1583 1588 background:#FFF url("../images/icons/arrow_branch.png") no-repeat right 6px;
1584 1589 display:block;
1585 1590 font-size:0.8em;
1586 1591 padding:11px 16px 0 0;
1587 1592 }
1588 1593
1589 1594 .right .logtags .tagtag {
1590 1595 background:#FFF url("../images/icons/tag_blue.png") no-repeat right 6px;
1591 1596 display:block;
1592 1597 font-size:0.8em;
1593 1598 padding:11px 16px 0 0;
1594 1599 }
1595 1600
1596 1601 div.browserblock {
1597 1602 overflow:hidden;
1598 1603 border:1px solid #ccc;
1599 1604 background:#f8f8f8;
1600 1605 font-size:100%;
1601 1606 line-height:125%;
1602 1607 padding:0;
1603 1608 }
1604 1609
1605 1610 div.browserblock .browser-header {
1606 1611 background:#FFF;
1607 1612 padding:10px 0px 35px 0px;
1608 1613 width: 100%;
1609 1614 }
1610 1615 div.browserblock .browser-nav {
1611 1616 float:left
1612 1617 }
1613 1618
1614 1619 div.browserblock .browser-branch {
1615 1620 padding:10px 0 0 0;
1616 1621 float:left;
1617 1622 }
1618 1623 div.browserblock .browser-branch label {
1619 1624 color:#4A4A4A;
1620 1625 vertical-align:text-top;
1621 1626 }
1622 1627
1623 1628 div.browserblock .browser-header span {
1624 1629 margin-left:25px;
1625 1630 font-weight:700;
1626 1631 }
1627 1632
1628 1633 div.browserblock .browser-body {
1629 1634 background:#EEE;
1630 1635 border-top:1px solid #CCC;
1631 1636 }
1632 1637
1633 1638 table.code-browser {
1634 1639 border-collapse:collapse;
1635 1640 width:100%;
1636 1641 }
1637 1642
1638 1643 table.code-browser tr {
1639 1644 margin:3px;
1640 1645 }
1641 1646
1642 1647 table.code-browser thead th {
1643 1648 background-color:#EEE;
1644 1649 height:20px;
1645 1650 font-size:1.1em;
1646 1651 font-weight:700;
1647 1652 text-align:left;
1648 1653 padding-left:10px;
1649 1654 }
1650 1655
1651 1656 table.code-browser tbody td {
1652 1657 padding-left:10px;
1653 1658 height:20px;
1654 1659 }
1655 1660
1656 1661 table.code-browser .browser-file {
1657 1662 background:url("../images/icons/document_16.png") no-repeat scroll 3px;
1658 1663 height:16px;
1659 1664 padding-left:20px;
1660 1665 text-align:left;
1661 1666 }
1662 1667 .diffblock .changeset_file{
1663 1668 background:url("../images/icons/file.png") no-repeat scroll 3px;
1664 1669 height:16px;
1665 1670 padding-left:22px;
1666 1671 text-align:left;
1667 1672 font-size: 14px;
1668 1673 }
1669 1674
1670 1675 .diffblock .changeset_header{
1671 1676 margin-left: 6px !important;
1672 1677 }
1673 1678
1674 1679 table.code-browser .browser-dir {
1675 1680 background:url("../images/icons/folder_16.png") no-repeat scroll 3px;
1676 1681 height:16px;
1677 1682 padding-left:20px;
1678 1683 text-align:left;
1679 1684 }
1680 1685
1681 1686 .box .search {
1682 1687 clear:both;
1683 1688 overflow:hidden;
1684 1689 margin:0;
1685 1690 padding:0 20px 10px;
1686 1691 }
1687 1692
1688 1693 .box .search div.search_path {
1689 1694 background:none repeat scroll 0 0 #EEE;
1690 1695 border:1px solid #CCC;
1691 1696 color:blue;
1692 1697 margin-bottom:10px;
1693 1698 padding:10px 0;
1694 1699 }
1695 1700
1696 1701 .box .search div.search_path div.link {
1697 1702 font-weight:700;
1698 1703 margin-left:25px;
1699 1704 }
1700 1705
1701 1706 .box .search div.search_path div.link a {
1702 1707 color:#003367;
1703 1708 cursor:pointer;
1704 1709 text-decoration:none;
1705 1710 }
1706 1711
1707 1712 #path_unlock {
1708 1713 color:red;
1709 1714 font-size:1.2em;
1710 1715 padding-left:4px;
1711 1716 }
1712 1717
1713 1718 .info_box * {
1714 1719 background:url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
1715 1720 color:#4A4A4A;
1716 1721 font-weight:700;
1717 1722 height:1%;
1718 1723 display:inline;
1719 1724 border-color:#DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
1720 1725 border-style:solid;
1721 1726 border-width:1px;
1722 1727 padding:4px 6px;
1723 1728 }
1724 1729
1725 1730 .info_box span {
1726 1731 margin-left:3px;
1727 1732 margin-right:3px;
1728 1733 }
1729 1734
1730 1735 .info_box input#at_rev {
1731 1736 text-align:center;
1732 1737 padding:5px 3px 3px 2px;
1733 1738 }
1734 1739
1735 1740 .info_box input#view {
1736 1741 text-align:center;
1737 1742 padding:4px 3px 2px 2px;
1738 1743 }
1739 1744
1740 1745 .yui-overlay,.yui-panel-container {
1741 1746 visibility:hidden;
1742 1747 position:absolute;
1743 1748 z-index:2;
1744 1749 }
1745 1750
1746 1751 .yui-tt {
1747 1752 visibility:hidden;
1748 1753 position:absolute;
1749 1754 color:#666;
1750 1755 background-color:#FFF;
1751 1756 font-family:arial, helvetica, verdana, sans-serif;
1752 1757 border:2px solid #003367;
1753 1758 font:100% sans-serif;
1754 1759 width:auto;
1755 1760 opacity:1px;
1756 1761 padding:8px;
1757 1762 white-space: pre;
1758 1763 -webkit-border-radius: 8px 8px 8px 8px;
1759 1764 -khtml-border-radius: 8px 8px 8px 8px;
1760 1765 -moz-border-radius: 8px 8px 8px 8px;
1761 1766 border-radius: 8px 8px 8px 8px;
1762 1767 }
1763 1768
1764 1769 .ac {
1765 1770 vertical-align:top;
1766 1771 }
1767 1772
1768 1773 .ac .yui-ac {
1769 1774 position:relative;
1770 1775 font-family:arial;
1771 1776 font-size:100%;
1772 1777 }
1773 1778
1774 1779 .ac .perm_ac {
1775 1780 width:15em;
1776 1781 }
1777 1782
1778 1783 .ac .yui-ac-input {
1779 1784 width:100%;
1780 1785 }
1781 1786
1782 1787 .ac .yui-ac-container {
1783 1788 position:absolute;
1784 1789 top:1.6em;
1785 1790 width:100%;
1786 1791 }
1787 1792
1788 1793 .ac .yui-ac-content {
1789 1794 position:absolute;
1790 1795 width:100%;
1791 1796 border:1px solid gray;
1792 1797 background:#fff;
1793 1798 overflow:hidden;
1794 1799 z-index:9050;
1795 1800 }
1796 1801
1797 1802 .ac .yui-ac-shadow {
1798 1803 position:absolute;
1799 1804 width:100%;
1800 1805 background:#000;
1801 1806 -moz-opacity:0.1px;
1802 1807 opacity:.10;
1803 1808 filter:alpha(opacity = 10);
1804 1809 z-index:9049;
1805 1810 margin:.3em;
1806 1811 }
1807 1812
1808 1813 .ac .yui-ac-content ul {
1809 1814 width:100%;
1810 1815 margin:0;
1811 1816 padding:0;
1812 1817 }
1813 1818
1814 1819 .ac .yui-ac-content li {
1815 1820 cursor:default;
1816 1821 white-space:nowrap;
1817 1822 margin:0;
1818 1823 padding:2px 5px;
1819 1824 }
1820 1825
1821 1826 .ac .yui-ac-content li.yui-ac-prehighlight {
1822 1827 background:#B3D4FF;
1823 1828 }
1824 1829
1825 1830 .ac .yui-ac-content li.yui-ac-highlight {
1826 1831 background:#556CB5;
1827 1832 color:#FFF;
1828 1833 }
1829 1834
1830 1835 .follow{
1831 1836 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
1832 1837 height: 16px;
1833 1838 width: 20px;
1834 1839 cursor: pointer;
1835 1840 display: block;
1836 1841 float: right;
1837 1842 margin-top: 2px;
1838 1843 }
1839 1844
1840 1845 .following{
1841 1846 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
1842 1847 height: 16px;
1843 1848 width: 20px;
1844 1849 cursor: pointer;
1845 1850 display: block;
1846 1851 float: right;
1847 1852 margin-top: 2px;
1848 1853 }
1849 1854
1850 1855 .currently_following{
1851 1856 padding-left: 10px;
1852 1857 padding-bottom:5px;
1853 1858 }
1854 1859
1855 1860 .journal_highlight{
1856 1861 font-weight: bold;
1857 1862 text-decoration: underline;
1858 1863 }
1859 1864
1860 1865 .add_icon {
1861 1866 background:url("../images/icons/add.png") no-repeat scroll 3px;
1862 1867 height:16px;
1863 1868 padding-left:20px;
1864 1869 padding-top:1px;
1865 1870 text-align:left;
1866 1871 }
1867 1872
1868 1873 .edit_icon {
1869 1874 background:url("../images/icons/folder_edit.png") no-repeat scroll 3px;
1870 1875 height:16px;
1871 1876 padding-left:20px;
1872 1877 padding-top:1px;
1873 1878 text-align:left;
1874 1879 }
1875 1880
1876 1881 .delete_icon {
1877 1882 background:url("../images/icons/delete.png") no-repeat scroll 3px;
1878 1883 height:16px;
1879 1884 padding-left:20px;
1880 1885 padding-top:1px;
1881 1886 text-align:left;
1882 1887 }
1883 1888
1884 1889 .refresh_icon {
1885 1890 background:url("../images/icons/arrow_refresh.png") no-repeat scroll 3px;
1886 1891 height:16px;
1887 1892 padding-left:20px;
1888 1893 padding-top:1px;
1889 1894 text-align:left;
1890 1895 }
1891 1896
1892 1897 .rss_icon {
1893 1898 background:url("../images/icons/rss_16.png") no-repeat scroll 3px;
1894 1899 height:16px;
1895 1900 padding-left:20px;
1896 1901 padding-top:1px;
1897 1902 text-align:left;
1898 1903 }
1899 1904
1900 1905 .atom_icon {
1901 1906 background:url("../images/icons/atom.png") no-repeat scroll 3px;
1902 1907 height:16px;
1903 1908 padding-left:20px;
1904 1909 padding-top:1px;
1905 1910 text-align:left;
1906 1911 }
1907 1912
1908 1913 .archive_icon {
1909 1914 background:url("../images/icons/compress.png") no-repeat scroll 3px;
1910 1915 height:16px;
1911 1916 padding-left:20px;
1912 1917 text-align:left;
1913 1918 padding-top:1px;
1914 1919 }
1915 1920
1916 1921 .action_button {
1917 1922 border:0;
1918 1923 display:block;
1919 1924 }
1920 1925
1921 1926 .action_button:hover {
1922 1927 border:0;
1923 1928 text-decoration:underline;
1924 1929 cursor:pointer;
1925 1930 }
1926 1931
1927 1932 #switch_repos {
1928 1933 position:absolute;
1929 1934 height:25px;
1930 1935 z-index:1;
1931 1936 }
1932 1937
1933 1938 #switch_repos select {
1934 1939 min-width:150px;
1935 1940 max-height:250px;
1936 1941 z-index:1;
1937 1942 }
1938 1943
1939 1944 .breadcrumbs {
1940 1945 border:medium none;
1941 1946 color:#FFF;
1942 1947 float:left;
1943 1948 text-transform:uppercase;
1944 1949 font-weight:700;
1945 1950 font-size:14px;
1946 1951 margin:0;
1947 1952 padding:11px 0 11px 10px;
1948 1953 }
1949 1954
1950 1955 .breadcrumbs a {
1951 1956 color:#FFF;
1952 1957 }
1953 1958
1954 1959 .flash_msg ul {
1955 1960 margin:0;
1956 1961 padding:0 0 10px;
1957 1962 }
1958 1963
1959 1964 .error_msg {
1960 1965 background-color:#FFCFCF;
1961 1966 background-image:url("../../images/icons/error_msg.png");
1962 1967 border:1px solid #FF9595;
1963 1968 color:#C30;
1964 1969 }
1965 1970
1966 1971 .warning_msg {
1967 1972 background-color:#FFFBCC;
1968 1973 background-image:url("../../images/icons/warning_msg.png");
1969 1974 border:1px solid #FFF35E;
1970 1975 color:#C69E00;
1971 1976 }
1972 1977
1973 1978 .success_msg {
1974 1979 background-color:#D5FFCF;
1975 1980 background-image:url("../../images/icons/success_msg.png");
1976 1981 border:1px solid #97FF88;
1977 1982 color:#090;
1978 1983 }
1979 1984
1980 1985 .notice_msg {
1981 1986 background-color:#DCE3FF;
1982 1987 background-image:url("../../images/icons/notice_msg.png");
1983 1988 border:1px solid #93A8FF;
1984 1989 color:#556CB5;
1985 1990 }
1986 1991
1987 1992 .success_msg,.error_msg,.notice_msg,.warning_msg {
1988 1993 background-position:10px center;
1989 1994 background-repeat:no-repeat;
1990 1995 font-size:12px;
1991 1996 font-weight:700;
1992 1997 min-height:14px;
1993 1998 line-height:14px;
1994 1999 margin-bottom:0;
1995 2000 margin-top:0;
1996 2001 display:block;
1997 2002 overflow:auto;
1998 2003 padding:6px 10px 6px 40px;
1999 2004 }
2000 2005
2001 2006 #msg_close {
2002 2007 background:transparent url("../../icons/cross_grey_small.png") no-repeat scroll 0 0;
2003 2008 cursor:pointer;
2004 2009 height:16px;
2005 2010 position:absolute;
2006 2011 right:5px;
2007 2012 top:5px;
2008 2013 width:16px;
2009 2014 }
2010 2015
2011 2016 div#legend_container table,div#legend_choices table {
2012 2017 width:auto !important;
2013 2018 }
2014 2019
2015 2020 table#permissions_manage {
2016 2021 width:0 !important;
2017 2022 }
2018 2023
2019 2024 table#permissions_manage span.private_repo_msg {
2020 2025 font-size:0.8em;
2021 2026 opacity:0.6px;
2022 2027 }
2023 2028
2024 2029 table#permissions_manage td.private_repo_msg {
2025 2030 font-size:0.8em;
2026 2031 }
2027 2032
2028 2033 table#permissions_manage tr#add_perm_input td {
2029 2034 vertical-align:middle;
2030 2035 }
2031 2036
2032 2037 div.gravatar {
2033 2038 background-color:#FFF;
2034 2039 border:1px solid #D0D0D0;
2035 2040 float:left;
2036 2041 margin-right:0.7em;
2037 2042 padding:2px 2px 0;
2038 2043 }
2039 2044
2040 2045 #header,#content,#footer {
2041 2046 min-width:1024px;
2042 2047 }
2043 2048
2044 2049 #content {
2045 2050 min-height:100%;
2046 2051 clear:both;
2047 2052 overflow:hidden;
2048 2053 padding:14px 30px;
2049 2054 }
2050 2055
2051 2056 #content div.box div.title div.search {
2052 2057 background:url("../../images/title_link.png") no-repeat top left;
2053 2058 border-left:1px solid #316293;
2054 2059 }
2055 2060
2056 2061 #content div.box div.title div.search div.input input {
2057 2062 border:1px solid #316293;
2058 2063 }
2059 2064
2060 2065 #content div.box div.title div.search div.button input.ui-button {
2061 2066 background:#4e85bb url("../../images/button_highlight.png") repeat-x;
2062 2067 border:1px solid #316293;
2063 2068 border-left:none;
2064 2069 color:#FFF;
2065 2070 }
2066 2071
2067 2072 #content div.box div.title div.search div.button input.ui-state-hover {
2068 2073 background:#46a0c1 url("../../images/button_highlight_selected.png") repeat-x;
2069 2074 border:1px solid #316293;
2070 2075 border-left:none;
2071 2076 color:#FFF;
2072 2077 }
2073 2078
2074 2079 #content div.box div.form div.fields div.field div.highlight .ui-button {
2075 2080 background:#4e85bb url("../../images/button_highlight.png") repeat-x;
2076 2081 border-top:1px solid #5c91a4;
2077 2082 border-left:1px solid #2a6f89;
2078 2083 border-right:1px solid #2b7089;
2079 2084 border-bottom:1px solid #1a6480;
2080 2085 color:#fff;
2081 2086 }
2082 2087
2083 2088 #content div.box div.form div.fields div.field div.highlight .ui-state-hover {
2084 2089 background:#46a0c1 url("../../images/button_highlight_selected.png") repeat-x;
2085 2090 border-top:1px solid #78acbf;
2086 2091 border-left:1px solid #34819e;
2087 2092 border-right:1px solid #35829f;
2088 2093 border-bottom:1px solid #257897;
2089 2094 color:#fff;
2090 2095 }
2091 2096
2092 2097 ins,div.options a:hover {
2093 2098 text-decoration:none;
2094 2099 }
2095 2100
2096 2101 img,#header #header-inner #quick li a:hover span.normal,#header #header-inner #quick li ul li.last,#content div.box div.form div.fields div.field div.textarea table td table td a,#clone_url {
2097 2102 border:none;
2098 2103 }
2099 2104
2100 2105 img.icon,.right .merge img {
2101 2106 vertical-align:bottom;
2102 2107 }
2103 2108
2104 2109 #header ul#logged-user,#content div.box div.title ul.links,#content div.box div.message div.dismiss,#content div.box div.traffic div.legend ul {
2105 2110 float:right;
2106 2111 margin:0;
2107 2112 padding:0;
2108 2113 }
2109 2114
2110 2115 #header #header-inner #home,#header #header-inner #logo,#content div.box ul.left,#content div.box ol.left,#content div.box div.pagination-left,div#commit_history,div#legend_data,div#legend_container,div#legend_choices {
2111 2116 float:left;
2112 2117 }
2113 2118
2114 2119 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul,#content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow {
2115 2120 display:none;
2116 2121 }
2117 2122
2118 2123 #header #header-inner #quick li:hover ul,#header #header-inner #quick li li:hover ul,#header #header-inner #quick li li li:hover ul,#header #header-inner #quick li li li li:hover ul,#content #left #menu ul.opened,#content #left #menu li ul.expanded {
2119 2124 display:block;
2120 2125 }
2121 2126
2122 2127 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a {
2123 2128 color:#bfe3ff;
2124 2129 }
2125 2130
2126 2131 #content div.box ol.lower-roman,#content div.box ol.upper-roman,#content div.box ol.lower-alpha,#content div.box ol.upper-alpha,#content div.box ol.decimal {
2127 2132 margin:10px 24px 10px 44px;
2128 2133 }
2129 2134
2130 2135 #content div.box div.form,#content div.box div.table,#content div.box div.traffic {
2131 2136 clear:both;
2132 2137 overflow:hidden;
2133 2138 margin:0;
2134 2139 padding:0 20px 10px;
2135 2140 }
2136 2141
2137 2142 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields {
2138 2143 clear:both;
2139 2144 overflow:hidden;
2140 2145 margin:0;
2141 2146 padding:0;
2142 2147 }
2143 2148
2144 2149 #content div.box div.form div.fields div.field div.label span,#login div.form div.fields div.field div.label span,#register div.form div.fields div.field div.label span {
2145 2150 height:1%;
2146 2151 display:block;
2147 2152 color:#363636;
2148 2153 margin:0;
2149 2154 padding:2px 0 0;
2150 2155 }
2151 2156
2152 2157 #content div.box div.form div.fields div.field div.input input.error,#login div.form div.fields div.field div.input input.error,#register div.form div.fields div.field div.input input.error {
2153 2158 background:#FBE3E4;
2154 2159 border-top:1px solid #e1b2b3;
2155 2160 border-left:1px solid #e1b2b3;
2156 2161 border-right:1px solid #FBC2C4;
2157 2162 border-bottom:1px solid #FBC2C4;
2158 2163 }
2159 2164
2160 2165 #content div.box div.form div.fields div.field div.input input.success,#login div.form div.fields div.field div.input input.success,#register div.form div.fields div.field div.input input.success {
2161 2166 background:#E6EFC2;
2162 2167 border-top:1px solid #cebb98;
2163 2168 border-left:1px solid #cebb98;
2164 2169 border-right:1px solid #c6d880;
2165 2170 border-bottom:1px solid #c6d880;
2166 2171 }
2167 2172
2168 2173 #content div.box-left div.form div.fields div.field div.textarea,#content div.box-right div.form div.fields div.field div.textarea,#content div.box div.form div.fields div.field div.select select,#content div.box table th.selected input,#content div.box table td.selected input {
2169 2174 margin:0;
2170 2175 }
2171 2176
2172 2177 #content div.box-left div.form div.fields div.field div.select,#content div.box-left div.form div.fields div.field div.checkboxes,#content div.box-left div.form div.fields div.field div.radios,#content div.box-right div.form div.fields div.field div.select,#content div.box-right div.form div.fields div.field div.checkboxes,#content div.box-right div.form div.fields div.field div.radios{
2173 2178 margin:0 0 0 0px !important;
2174 2179 padding:0;
2175 2180 }
2176 2181
2177 2182 #content div.box div.form div.fields div.field div.select,#content div.box div.form div.fields div.field div.checkboxes,#content div.box div.form div.fields div.field div.radios {
2178 2183 margin:0 0 0 200px;
2179 2184 padding:0;
2180 2185 }
2181 2186
2182 2187
2183 2188 #content div.box div.form div.fields div.field div.select a:hover,#content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover,#content div.box div.action a:hover {
2184 2189 color:#000;
2185 2190 text-decoration:none;
2186 2191 }
2187 2192
2188 2193 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus {
2189 2194 border:1px solid #666;
2190 2195 }
2191 2196
2192 2197 #content div.box div.form div.fields div.field div.checkboxes div.checkbox,#content div.box div.form div.fields div.field div.radios div.radio {
2193 2198 clear:both;
2194 2199 overflow:hidden;
2195 2200 margin:0;
2196 2201 padding:8px 0 2px;
2197 2202 }
2198 2203
2199 2204 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input,#content div.box div.form div.fields div.field div.radios div.radio input {
2200 2205 float:left;
2201 2206 margin:0;
2202 2207 }
2203 2208
2204 2209 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label,#content div.box div.form div.fields div.field div.radios div.radio label {
2205 2210 height:1%;
2206 2211 display:block;
2207 2212 float:left;
2208 2213 margin:2px 0 0 4px;
2209 2214 }
2210 2215
2211 2216 div.form div.fields div.field div.button input,#content div.box div.form div.fields div.buttons input,div.form div.fields div.buttons input,#content div.box div.action div.button input {
2212 2217 color:#000;
2213 2218 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2214 2219 font-size:11px;
2215 2220 font-weight:700;
2216 2221 margin:0;
2217 2222 }
2218 2223
2219 2224 div.form div.fields div.field div.button .ui-button,#content div.box div.form div.fields div.buttons input.ui-button {
2220 2225 background:#e5e3e3 url("../images/button.png") repeat-x;
2221 2226 border-top:1px solid #DDD;
2222 2227 border-left:1px solid #c6c6c6;
2223 2228 border-right:1px solid #DDD;
2224 2229 border-bottom:1px solid #c6c6c6;
2225 2230 color:#515151;
2226 2231 outline:none;
2227 2232 margin:0;
2228 2233 padding:6px 12px;
2229 2234 }
2230 2235
2231 2236 div.form div.fields div.field div.button .ui-state-hover,#content div.box div.form div.fields div.buttons input.ui-state-hover {
2232 2237 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2233 2238 border-top:1px solid #ccc;
2234 2239 border-left:1px solid #bebebe;
2235 2240 border-right:1px solid #b1b1b1;
2236 2241 border-bottom:1px solid #afafaf;
2237 2242 color:#515151;
2238 2243 outline:none;
2239 2244 margin:0;
2240 2245 padding:6px 12px;
2241 2246 }
2242 2247
2243 2248 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight {
2244 2249 display:inline;
2245 2250 }
2246 2251
2247 2252 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons {
2248 2253 margin:10px 0 0 200px;
2249 2254 padding:0;
2250 2255 }
2251 2256
2252 2257 #content div.box-left div.form div.fields div.buttons,#content div.box-right div.form div.fields div.buttons,div.box-left div.form div.fields div.buttons,div.box-right div.form div.fields div.buttons {
2253 2258 margin:10px 0 0;
2254 2259 }
2255 2260
2256 2261 #content div.box table td.user,#content div.box table td.address {
2257 2262 width:10%;
2258 2263 text-align:center;
2259 2264 }
2260 2265
2261 2266 #content div.box div.action div.button,#login div.form div.fields div.field div.input div.link,#register div.form div.fields div.field div.input div.link {
2262 2267 text-align:right;
2263 2268 margin:6px 0 0;
2264 2269 padding:0;
2265 2270 }
2266 2271
2267 2272 #content div.box div.action div.button input.ui-button,#login div.form div.fields div.buttons input.ui-button,#register div.form div.fields div.buttons input.ui-button {
2268 2273 background:#e5e3e3 url("../images/button.png") repeat-x;
2269 2274 border-top:1px solid #DDD;
2270 2275 border-left:1px solid #c6c6c6;
2271 2276 border-right:1px solid #DDD;
2272 2277 border-bottom:1px solid #c6c6c6;
2273 2278 color:#515151;
2274 2279 margin:0;
2275 2280 padding:6px 12px;
2276 2281 }
2277 2282
2278 2283 #content div.box div.action div.button input.ui-state-hover,#login div.form div.fields div.buttons input.ui-state-hover,#register div.form div.fields div.buttons input.ui-state-hover {
2279 2284 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2280 2285 border-top:1px solid #ccc;
2281 2286 border-left:1px solid #bebebe;
2282 2287 border-right:1px solid #b1b1b1;
2283 2288 border-bottom:1px solid #afafaf;
2284 2289 color:#515151;
2285 2290 margin:0;
2286 2291 padding:6px 12px;
2287 2292 }
2288 2293
2289 2294 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results {
2290 2295 text-align:left;
2291 2296 float:left;
2292 2297 margin:0;
2293 2298 padding:0;
2294 2299 }
2295 2300
2296 2301 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span {
2297 2302 height:1%;
2298 2303 display:block;
2299 2304 float:left;
2300 2305 background:#ebebeb url("../images/pager.png") repeat-x;
2301 2306 border-top:1px solid #dedede;
2302 2307 border-left:1px solid #cfcfcf;
2303 2308 border-right:1px solid #c4c4c4;
2304 2309 border-bottom:1px solid #c4c4c4;
2305 2310 color:#4A4A4A;
2306 2311 font-weight:700;
2307 2312 margin:0;
2308 2313 padding:6px 8px;
2309 2314 }
2310 2315
2311 2316 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled {
2312 2317 color:#B4B4B4;
2313 2318 padding:6px;
2314 2319 }
2315 2320
2316 2321 #login,#register {
2317 2322 width:520px;
2318 2323 margin:10% auto 0;
2319 2324 padding:0;
2320 2325 }
2321 2326
2322 2327 #login div.color,#register div.color {
2323 2328 clear:both;
2324 2329 overflow:hidden;
2325 2330 background:#FFF;
2326 2331 margin:10px auto 0;
2327 2332 padding:3px 3px 3px 0;
2328 2333 }
2329 2334
2330 2335 #login div.color a,#register div.color a {
2331 2336 width:20px;
2332 2337 height:20px;
2333 2338 display:block;
2334 2339 float:left;
2335 2340 margin:0 0 0 3px;
2336 2341 padding:0;
2337 2342 }
2338 2343
2339 2344 #login div.title h5,#register div.title h5 {
2340 2345 color:#fff;
2341 2346 margin:10px;
2342 2347 padding:0;
2343 2348 }
2344 2349
2345 2350 #login div.form div.fields div.field,#register div.form div.fields div.field {
2346 2351 clear:both;
2347 2352 overflow:hidden;
2348 2353 margin:0;
2349 2354 padding:0 0 10px;
2350 2355 }
2351 2356
2352 2357 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message {
2353 2358 height:1%;
2354 2359 display:block;
2355 2360 color:red;
2356 2361 margin:8px 0 0;
2357 2362 padding:0;
2358 2363 max-width: 320px;
2359 2364 }
2360 2365
2361 2366 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label {
2362 2367 color:#000;
2363 2368 font-weight:700;
2364 2369 }
2365 2370
2366 2371 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input {
2367 2372 float:left;
2368 2373 margin:0;
2369 2374 padding:0;
2370 2375 }
2371 2376
2372 2377 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox {
2373 2378 margin:0 0 0 184px;
2374 2379 padding:0;
2375 2380 }
2376 2381
2377 2382 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label {
2378 2383 color:#565656;
2379 2384 font-weight:700;
2380 2385 }
2381 2386
2382 2387 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input {
2383 2388 color:#000;
2384 2389 font-size:1em;
2385 2390 font-weight:700;
2386 2391 font-family:Verdana, Helvetica, Sans-Serif;
2387 2392 margin:0;
2388 2393 }
2389 2394
2390 2395 #changeset_content .container .wrapper,#graph_content .container .wrapper {
2391 2396 width:600px;
2392 2397 }
2393 2398
2394 2399 #changeset_content .container .left,#graph_content .container .left {
2395 2400 float:left;
2396 2401 width:70%;
2397 2402 padding-left:5px;
2398 2403 }
2399 2404
2400 2405 #changeset_content .container .left .date,.ac .match {
2401 2406 font-weight:700;
2402 2407 padding-top: 5px;
2403 2408 padding-bottom:5px;
2404 2409 }
2405 2410
2406 2411 div#legend_container table td,div#legend_choices table td {
2407 2412 border:none !important;
2408 2413 height:20px !important;
2409 2414 padding:0 !important;
2410 2415 }
2411 2416
2412 2417 #q_filter{
2413 2418 border:0 none;
2414 2419 color:#AAAAAA;
2415 2420 margin-bottom:-4px;
2416 2421 margin-top:-4px;
2417 2422 padding-left:3px;
2418 2423 }
2419 2424
@@ -1,86 +1,86 b''
1 1 <%inherit file="/base/base.html"/>
2 2
3 3 <%def name="title()">
4 4 ${c.repo_name} ${_('Changesets')} - r${c.cs_ranges[0].revision}:${h.short_id(c.cs_ranges[0].raw_id)} -> r${c.cs_ranges[-1].revision}:${h.short_id(c.cs_ranges[-1].raw_id)} - ${c.rhodecode_name}
5 5 </%def>
6 6
7 7 <%def name="breadcrumbs_links()">
8 8 ${h.link_to(u'Home',h.url('/'))}
9 9 &raquo;
10 10 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
11 11 &raquo;
12 12 ${_('Changesets')} - r${c.cs_ranges[0].revision}:${h.short_id(c.cs_ranges[0].raw_id)} -> r${c.cs_ranges[-1].revision}:${h.short_id(c.cs_ranges[-1].raw_id)}
13 13 </%def>
14 14
15 15 <%def name="page_nav()">
16 16 ${self.menu('changelog')}
17 17 </%def>
18 18
19 19 <%def name="main()">
20 20 <div class="box">
21 21 <!-- box / title -->
22 22 <div class="title">
23 23 ${self.breadcrumbs()}
24 24 </div>
25 25 <div class="table">
26 26 <div id="body" class="diffblock">
27 27 <div class="code-header">
28 28 <div>
29 29 ${_('Changesets')} - r${c.cs_ranges[0].revision}:${h.short_id(c.cs_ranges[0].raw_id)} -> r${c.cs_ranges[-1].revision}:${h.short_id(c.cs_ranges[-1].raw_id)}
30 30 ##&raquo; <span>${h.link_to(_('raw diff'),
31 31 ##h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))}</span>
32 32 ##&raquo; <span>${h.link_to(_('download diff'),
33 33 ##h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download'))}</span>
34 34 </div>
35 35 </div>
36 36 </div>
37 37 <div id="changeset_content">
38 38 <div class="container">
39 39
40 40 </div>
41 41 <span style="font-size:1.1em;font-weight: bold">${_('Files affected')}</span>
42 42 <div class="cs_files">
43 43 %for cs in c.cs_ranges:
44 ${cs}
44 <div class="cur_cs">r${cs}</div>
45 45 %for change,filenode,diff,cs1,cs2 in c.changes[cs.raw_id]:
46 46 <div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor=h.repo_name_slug('C%s-%s' % (cs.short_id,filenode.path))))}</div>
47 47 %endfor
48 48 %endfor
49 49 </div>
50 50 </div>
51 51
52 52 </div>
53 53 %for cs in c.cs_ranges:
54 54 %for change,filenode,diff,cs1,cs2 in c.changes[cs.raw_id]:
55 55 %if change !='removed':
56 56 <div style="clear:both;height:10px"></div>
57 57 <div class="diffblock">
58 58 <div id="${h.repo_name_slug('C%s-%s' % (cs.short_id,filenode.path))}" class="code-header">
59 59 <div class="changeset_header">
60 60 <span class="changeset_file">
61 61 ${h.link_to_if(change!='removed',filenode.path,h.url('files_home',repo_name=c.repo_name,
62 62 revision=filenode.changeset.raw_id,f_path=filenode.path))}
63 63 </span>
64 64 %if 1:
65 65 &raquo; <span>${h.link_to(_('diff'),
66 66 h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='diff'))}</span>
67 67 &raquo; <span>${h.link_to(_('raw diff'),
68 68 h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='raw'))}</span>
69 69 &raquo; <span>${h.link_to(_('download diff'),
70 70 h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='download'))}</span>
71 71 %endif
72 72 </div>
73 73 </div>
74 74 <div class="code-body">
75 75 %if diff:
76 76 ${diff|n}
77 77 %else:
78 78 ${_('No changes in this file')}
79 79 %endif
80 80 </div>
81 81 </div>
82 82 %endif
83 83 %endfor
84 84 %endfor
85 85 </div>
86 86 </%def> No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now