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