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