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