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