-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzen.css
2038 lines (1875 loc) · 128 KB
/
zen.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* General styles */
body, td, th { padding: 0px; margin: 0px; font-family: Arial, sans-serif; font-style: normal; font-weight: normal; text-align: left; font-size: 13px; line-height: 1.5; color: #555;}
html, body { padding: 0px; margin: 0px; height: 100%; }
body { background-color: #FFF; }
h1 { font-size: 1.6em; }
h2 { font-size: 1.4em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.15em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1.05em; }
h1, h2, h3, h4, h5, h6 { font-weight: bold; padding: 3px 3px 3px 0; margin: 5px 0 5px 0; }
table, img, a img { border: 0; }
a { color: #3F5FDC; text-decoration: none; }
a.image:hover { border: 0px; }
a.issue_closed { text-decoration: line-through; }
a:hover { border-bottom: 1px dotted #AAA; }
a:active, a:focus { outline: none; outline-style: none; }
form, p { margin: 0px; padding: 0px; }
input, select, textarea, button { font-family: Arial, sans-serif; font-size: 1em; color: #555; border: 1px solid #AAA; padding: 2px; }
select { font-family: sans-serif !important; } /* Safari 5.1 mac fix */
input, select, textarea { background-color: #FFF; }
input[type="text"], input[type="email"], input[type="search"], input[type="password"], input[type="url"], textarea, select { box-shadow: inset 0 0 6px rgba(200, 200, 200, 0.4); -webkit-box-shadow: inset 0 0 6px rgba(200, 200, 200, 0.4); -moz-box-shadow: inset 0 0 6px rgba(200, 200, 200, 0.4); }
input[type="image"] { border: 0px; padding: 0px; width: 16px; height: 16px; background-color: transparent; }
input[type="checkbox"] { margin: 0; }
input[type="text"][disabled], input[type="email"][disabled], input[type="url"][disabled], input[type="search"][disabled], input[type="password"][disabled], textarea[disabled], select[disabled] { background-color: #F9F9F9; color: #BBB; }
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {border:0;padding:0;margin:0;}
input::-webkit-input-placeholder {
color: #BBB;
}
input:-moz-placeholder {
color: #BBB;
}
pre { overflow: auto; }
select { height: 22px; }
textarea { padding: 0; font-family: 'Droid Sans Mono', monospace; }
input#login_button, input#register_button { cursor: pointer; font-weight: bold; }
th { font-weight: bold; border-bottom: 1px solid #DDD; padding: 2px; background-color: #F5F5F5; }
dt { float: left; width: 420px; }
dt label { padding-left: 0; }
dd { margin-left: 0px; margin-bottom: 15px; vertical-align: middle; }
label { font-weight: bold; margin: 0px; padding: 2px; cursor: pointer; }
label .faded_out { font-weight: normal; }
label > input[type="checkbox"] { margin: 0 3px; position: relative; top: 2px;}
div.image_container { border: 1px solid #CCC; padding: 3px; background-color: #F3F3F3; width: auto; margin: 0 5px 0 5px; float: right; clear: right; }
div.image_container icleft { float: left; clear: left; }
div.image_container icright { float: right; clear: right; }
div.image_container.thumb img.image { width: 220px; }
.offline_msg { padding: 10px; }
.generic_offline { text-align: center; font-weight: bold; font-size: larger; }
.left { text-align: left; }
.right { text-align: right; }
blockquote { border-left: 2px solid rgba(97, 147, 207, 0.5); padding: 0 0 0 5px; margin: 5px 0 5px 15px; font-style: italic; color: #888; }
/* end general styles */
/* Main header area */
header, .backdrop_detail_header {
background: #eee;
border-bottom: 1px solid #DADADA;
color: white;
}
header { height: 35px; }
header #main_menu { float: left; }
header #header_userinfo { float: right; }
header #header_userinfo li { margin-right: 0 !important; }
header #header_userinfo li.temporarily_switched { background-color: #fec41e; box-shadow: inset 0 0 4px rgba(50, 50, 150, 0.8); -webkit-box-shadow: inset 0 0 4px rgba(50, 50, 150, 0.8); -moz-box-shadow: inset 0 0 4px rgba(50, 50, 150, 0.8); }
header #header_userinfo li.temporarily_switched a { color: #333; }
header #header_userinfo li.temporarily_switched .user_menu_dropdown { background-color: #fec41e; }
#header_avatar { margin: -2px 10px 0 0; }
header nav ul { position: relative !important; }
#logo_container { padding: 0 0 0 10px; float: left; margin: 5px 30px 5px 5px; display: block; }
#logo_container .logo { float: left; margin: 0px 5px 0 0; text-decoration: none; border: 0; line-height: 0; }
#logo_container a.logo:hover { text-decoration: none; border: 0; }
#logo_container .logo_name { font-family: 'Helvetica Neue', serif; font-size: 1.7em; font-weight: bold; color: #555; margin: 2px 5px; padding: 0; line-height: 1em; text-shadow: 0 1px 1px #FFF; filter: dropshadow(color=#FFFFFF, offx=0, offy=1); float: left; }
.submenu_strip .selected_project { font-size: 1em; font-weight: bold; color: #555; border-color: #D9D9BB; }
.submenu_strip {
background-color: #FFF;
color: #333;
/*box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); */
background: -moz-linear-gradient(top, #F5F5F5 0%, #FFFFFF 100%); /* FF3.6+ */
background: -khtml-gradient(linear, left top, left bottom, color-stop(0%,#F5F5F5), color-stop(100%,#FFFFFF)); /* Chrome,Safari4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F5F5F5), color-stop(100%,#FFFFFF)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #F5F5F5 0%,#FFFFFF 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #F5F5F5 0%,#FFFFFF 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #F5F5F5 0%,#FFFFFF 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F5F5F5', endColorstr='#FFFFFF',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #F5F5F5 0%, #FFFFFF 100%); /* W3C */
padding: 5px;
height: 20px;
font-size: 0.9em;
margin: 0px;
}
#quicksearch_container input[type="submit"] { position: absolute; right: 3px; top: 0; padding: 2px 3px !important; border-radius: 0 5px 5px 0 !important; }
#quicksearch_container input[type="search"] {
margin: 0px 6px;
width: 320px;
font-size: 13px;
padding: 2px 2px 2px 2px !important;
height: 17px;
line-height: 15px;
box-sizing: initial;
display: block !important;
position: relative;
-webkit-appearance: none;
-o-appearance: none;
appearance: none;
box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(0, 0, 0, 0.3);
}
#quicksearch_indicator { position: absolute; left: 10px; top: 3px; z-index: 10; }
/* End main header area */
/* error and success message popups / slidedowns */
input[type=checkbox].semi-checked { filter:alpha(opacity=40); -moz-opacity:.40; opacity:.40; }
.semi_transparent { filter:alpha(opacity=40); -moz-opacity:.40; opacity:.40; }
.semi_transparent img { vertical-align: middle; }
.medium_transparent { filter:alpha(opacity=85); -moz-opacity:.85; opacity:.85; }
.medium_transparent img { vertical-align: middle; }
.almost_not_transparent { filter:alpha(opacity=90); -moz-opacity:.90; opacity:.90; }
.popup_message { margin: 0; position: fixed; top: 0; left: 0; width: 100%; padding: 0 !important; font-size: 1em; color: #000; border: 1px solid rgba(100, 100, 100, 0.3); cursor: pointer; text-align: center; }
.dismiss_me { position: absolute; top: 5px; right: 5px; text-align: right; font-size: 0.9em; line-height: 1; padding: 0; margin: 0; }
.popup_message.failure { z-index: 200001; background-color: #E84545; }
.popup_message.failure .dismiss_me { color: #822323; }
.popup_message.success { z-index: 200000; background-color: #FFF; }
.popup_message.success .dismiss_me { color: #238223; }
/* end slidedowns */
/* main page layout dimensions and details */
.side_bar { width: 310px; background-color: transparent; vertical-align: top; padding-top: 15px; padding-left: 5px; }
.main_area { text-align: left; vertical-align: top; padding: 10px; width: auto; min-width: 700px; }
/* end main page layout */
/* footer section */
.footer_bar {
vertical-align: bottom;
height: 37px;
background: -moz-linear-gradient(top, #FFFFFF 0%, #F1F1F1 100%); /* FF3.6+ */
background: -khtml-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F1F1F1)); /* Chrome,Safari4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F1F1F1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F1F1F1',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #FFFFFF 0%, #F1F1F1 100%); /* W3C */
}
footer { background-color: transparent; width: 100%; border: 0; text-align: center; }
footer img { float: left; margin: 0 5px 0 0; }
footer td { font-size: 0.9em; line-height: 1.2; padding: 5px; text-shadow: 1px 1px 0px #FFF; }
/* footer section */
/* login and registration page styling */
#tab_login_pane { text-align: left; }
#tab_login_pane .article { margin-left: 0; width: auto; font-size: 0.9em; }
#tab_forgot_pane { width: 600px; margin-left: auto; margin-right: auto; }
.logindiv { border: 0px; padding: 10px; }
.logindiv.regular { width: 300px; float: left; }
.logindiv.openid_container { width: 600px; float: right; }
.logindiv.openid_container form { width: 590px; }
.login_boxheader { font-size: 1.4em; font-weight: bold; padding-bottom: 10px; }
.login_fieldheader { font-weight: bold; }
.login_fieldtable { margin-left: auto; margin-right: auto; }
.logindiv input[type='password'] { font-family: sans-serif; } /* IE does not like web fonts on password boxes, and turns it into blankness, so we will use a different font */
.loggedindiv { margin: 10px; text-align: center; font-weight: bold; }
.login_page_div { width: 800px; margin-left: auto; margin-right: auto; margin-top: 40px; text-align: center; }
.register_success { width: 600px; margin-top: 20px; margin-left: auto; margin-right: auto; }
/* end login / registration styling */
/* tooltip styling */
.tooltip {
display: block;
position: absolute;
bottom: 35px;
left: -12px;
font-size: 1em;
opacity: 0;
color: #333;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
border: 1px solid #CCC;
border-radius: 0;
background-color: #FFF;
-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
-moz-transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
-ms-transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
-o-transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
z-index: 1;
overflow: hidden;
width: 0;
height: 0;
padding: 0;
white-space: normal;
}
.tooltip.from-above {
bottom: auto;
top: 20px;
}
.tooltip.big {
width: 450px;
}
*:hover > .tooltip, *:active > .tooltip {
z-index: 200000;
width: 350px;
height: auto;
bottom: 40px;
left: -12px;
padding: 10px;
opacity: 1;
visibility: visible;
overflow: visible;
-webkit-transition: opacity 0.7s ease, visibility 0.7s ease, bottom 0.7s ease 0.9s;
-moz-transition: opacity 0.7s ease, visibility 0.7s ease, bottom 0.7s ease 0.9s;
-ms-transition: opacity 0.7s ease, visibility 0.7s ease, bottom 0.7s ease 0.9s;
-o-transition: opacity 0.7s ease, visibility 0.7s ease, bottom 0.7s ease 0.9s;
transition: opacity 0.7s ease, visibility 0.7s ease, bottom 0.7s ease 0.9s;
}
*:hover > .tooltip.from-above, *:active > .tooltip.from-above {
bottom: auto;
top: 25px;
}
.tooltip:before,
.tooltip:after {
content: '';
position: absolute;
bottom: -12px;
left: 50%;
margin-left: -9px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #CCC;
}
.tooltip:after {
bottom: -10px;
margin-left: -10px;
border-top: 10px solid #FFF;
}
.tooltip.from-above:before, .tooltip.from-above:after {
border-top: none;
bottom: auto;
top: -10px;
border-bottom: 10px solid #CCC;
}
.tooltip.from-above:after {
border-bottom: 10px solid #FFF;
top: -10px;
}
.tooltip.leftie:before,
.tooltip.leftie:after {
left: 10%;
}
.tooltip.rightie:before,
.tooltip.rightie:after {
left: 90%;
}
#search_more_actions .tooltip.rightie { right: 50px; left: auto; }
/* end tooltip styling */
/* table column containing an image */
.imgtd { width: 22px; text-align: center; vertical-align: middle; }
/* frontpage article layout styling */
.article { font-size: 1em; color: #666; width: auto; padding: 5px; position: relative; }
.main_area.frontpage .article { padding-top: 0; }
.main_area.frontpage .article h1, .main_area.frontpage .article h2, .main_area.frontpage .article h3, .main_area.frontpage .article h4, .main_area.frontpage .article h5, .main_area.frontpage .article h6 { margin-top: 0; margin-bottom: 5px; }
/* comments and commits styling */
.comment { padding-bottom: 0; clear: both; }
.comment:target .comment_main { border: 1px dotted #CCC; background-color: #F0F7FF; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; }
.comment_delete { margin-top: 10px !important; }
.commenttitle { font-weight: bold; }
.comment_hash { float: right; font-size: 2.0em; font-weight: normal; color: #B1B8E9; }
.comments_none { font-weight: normal; }
.commentdate { color: #AAA; font-weight: normal; font-size: 0.8em; }
.commentheader { padding: 0 0 5px 0; border-bottom: 1px dotted #CCC; }
.comment_add_title { font-size: 1.1em; font-weight: bold; }
.commentbody { padding: 5px 5px 5px 0; font-size: 0.9em; }
.commentbody .image_container.thumb img.image { width: 130px; }
.commenttools { float: right; padding: 5px; margin: 5px; font-size: 0.9em; text-align: right; }
.commenttools .button { font-weight: normal !important; }
.commenttools img { vertical-align: bottom; margin-right: 5px; }
.comment_controls { margin-top: 10px; }
.comment_edit, .comment_add_main { padding: 5px; background-color: #F1F1F1; border: 1px dotted #CCC; }
.comment_editsave, .comment_addsave { font-weight: bold; }
.comment_titlebox { width: 600px; margin-bottom: 8px; }
.comment_visibilitybox { width: 400px; margin-bottom: 8px; }
.commit_header { font-weight: bold; font-size: larger; }
.commit_expander { float: right; }
.commit_expander img { vertical-align: text-bottom; }
.commit_left { min-width: 650px; float: left; margin-top: 10px; margin-bottom: 20px; }
.commit_right { width: 200px; float: right; margin-top: 10px; margin-bottom: 20px;}
.commit_left .commit_header, .commit_right .commit_header { padding-bottom: 5px; }
.commits_next { clear: both; }
.commit_left td { border: none !important; }
.commit_main pre { white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word; }
.commitbranch { font-weight: normal; background-color: #D4E5FF; color: #99C; padding: 2px; font-size: smaller; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
/* end comments and commits styling */
/* generic closed and blocking issue styling */
.issue_closed td { text-decoration: line-through; }
.planning_container .issue_closed td { text-decoration: none; color: #999; }
.planning_container .issue_closed a { color: #9C9; }
.issue_blocking td { color: #F44; font-weight: bold; }
/* end closed / blocking */
/* faded text styles */
.faded_out, .faded_out td { color: #AAA; }
.selected_green span.faded_out { color: #D1F1D1; }
.selected_red span.faded_out { color: #F1D1D1; }
.faded_out.dark { color: #999; }
.faded_out.blue { color: #77C; }
.faded_out a { color: #549D54; }
.faded_out a.disabled { color: #BABFBA; }
/* end faded text */
/* autocompleter styling */
div.autocomplete { position: absolute; z-index: 200000; background-color: white; border: 0; padding: 0px; box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.2); }
div.autocomplete ul { list-style-type: none; margin: 0px; width: 320px; padding: 0px; border: 0; }
div.autocomplete li.header { padding-top: 15px; font-size: 1.2em; font-weight: bold; border-top: 0; }
div.autocomplete ul li.selected, div.autocomplete ul li.selected:hover { background-color: #F1F1F1; text-align: left; font-weight: normal; border-top: 1px dotted #BBB; color: #333; text-align: left; }
div.autocomplete ul li div { font-weight: bold; }
div.autocomplete ul li img { float: left; margin-right: 5px; }
div.autocomplete ul li span { font-size: 0.8em; }
div.autocomplete ul li span.url { display: none; }
div.autocomplete ul li.disabled { cursor: default; }
div.autocomplete ul li.issue_closed { color: #AAA; }
div.autocomplete .extra { display: none; font-weight: bold; font-size: 1em; }
div.autocomplete .extra.attached { text-align: right; height: 20px; }
div.autocomplete .extra.attached span, div.autocomplete .extra.attached img { float: right; }
div.autocomplete .extra.attached img { margin-left: 3px; margin-right: 15px; }
div.autocomplete .extra span { font-weight: normal; font-size: 1em; }
div.autocomplete li.selected .extra { display: block; }
div.autocomplete ul li.no_issues_found { color: #AAA; padding: 10px; }
div.autocomplete ul li { border-top: 1px dotted #CCC; font-size: 0.9em; list-style-type: none; display: block; width: 100%; margin: 0; padding: 2px 2px 2px 5px; /*height: 32px;*/ cursor: pointer; font-weight: normal; text-align: left; background-color: #FFF; color: #555; line-height: 1.4; }
div.autocomplete ul li.searchterm, div.autocomplete ul li.searchterm.selected { border-top: 0; }
div.autocomplete ul li.searchterm:first-line { font-style: italic; }
div.autocomplete ul li .hidden { display: none; }
/* end autocompleter */
/* tabbed menu styles */
.tab_menu { padding: 0px; margin: 0px; border: 0px; position: relative; border-bottom: 1px solid #BBB; }
#project_config_menu_panes .tab_menu { margin-top: 35px; margin-bottom: 10px; }
.tab_menu ul { position: absolute; bottom: -1px; padding: 0px; margin: 0; list-style: none; }
.tab_menu ul.right { right: 10px; }
.tab_menu li img.menu_dropdown { float: right; margin: 0 0 0 5px; border: 1px solid transparent; }
.tab_menu li img { float: left; margin-right: 5px; }
.tab_menu li:hover img.menu_dropdown, .tab_menu_container:hover img.menu_dropdown { border-color: #BBB; background-color: #F6F6F1; }
.tab_menu li { color: #777; border-bottom: none; border-top: 1px solid #BBB; border-top-right-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; padding: 3px 4px 3px 4px; display: block; }
.tab_menu li:hover { text-decoration: none; border-bottom: none; display: block; }
.tab_menu li { float: left; display: block; font-size: 0.9em; border: 1px solid #CCC; border-bottom: 1px solid #BBB; background-color: #EBEBEB; margin: 0 0 0 5px; border-top-right-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; }
.tab_menu li.selected, .tab_menu li:hover { color: #444; display: block; box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); }
.tab_menu li.selected, .tab_menu li.selected:hover { background-color: #FFF; border: 1px solid #BBB; border-bottom: 1px solid #FFF; }
.tab_menu .selected { font-weight: bold; }
.tab_menu li:hover { background-color: #EFEFEF; border: 1px solid #BBB; border-top-right-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; }
.tab_menu li.nohover:hover a, .tab_menu li.nohover a { display: block; }
.tab_menu li.nohover:hover, .tab_menu li.nohover { background-color: transparent; border: 0px; margin: 0; }
.tab_menu li a { color: inherit; float: left; }
.tab_menu li a:hover { border-bottom: 0; }
a.not_clickable:hover { cursor: default; }
.tab_menu .tab_menu_dropdown, .tab_menu_container .tab_menu_dropdown { display: none; position: absolute; top: 25px; margin-left: -5px; width: 250px; font-size: 1em; background-color: #A4C0E4; color: #FFF; padding: 5px 0; z-index: 10000; border-top-right-radius: 3px; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-bottomleft: 5px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-left-radius: 3px; -webkit-border-bottom-right-radius: 3px; -webkit-border-top-right-radius: 3px; }
#header_userinfo .tab_menu_dropdown { top: 25px; right: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-left-radius: 0px; border-top-left-radius: 0px; -moz-border-radius-topleft: 0px; }
.user_menu_dropdown a { font-size: 0.9em; }
.user_menu_dropdown .header { padding-top: 0; margin-top: 0 !important; }
.tab_menu .tab_menu_dropdown a, .tab_menu_container .tab_menu_dropdown a { float: none; }
#header_userinfo .tab_menu_dropdown a { font-weight: normal; }
#header_userinfo .tab_menu_dropdown .userstate { font-weight: normal; }
#header_userinfo:hover img.dropdown { background-color: #669BDA; }
div.dropdown_separator { border-left: 1px dotted #EAEAF5; padding: 0 0 0 4px; margin: 0; float: right; font-size: 0; }
.tab_menu_dropdown { box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); }
.tab_menu_dropdown a img { float: left; margin-right: 5px; }
.tab_menu li:hover .tab_menu_dropdown, .tab_menu_container:hover .tab_menu_dropdown { display: block; }
.tab_menu li.selected .tab_menu_dropdown, .tab_menu_container li.selected .tab_menu_dropdown { background-color: #FFF; color: #333; }
.tab_menu li.selected:hover img.menu_dropdown { background-color: #F5F5F5; border: 1px solid #CCC; }
.tab_menu .tab_menu_dropdown a, .tab_menu_container .tab_menu_dropdown a { color: inherit; font-weight: normal; display: block; padding: 3px 5px; background-color: transparent; }
.tab_menu .tab_menu_dropdown div.header, .tab_menu_container .tab_menu_dropdown div.header { font-weight: bold; color: inherit; margin: 5px 5px 2px 5px; }
.tab_menu .tab_menu_dropdown a:hover, .tab_menu_container .tab_menu_dropdown a:hover { background-color: #669BDA; border: 0; }
.tab_menu li.selected .tab_menu_dropdown a:hover, .tab_menu_container li.selected .tab_menu_dropdown a:hover { background-color: #EAEAF5; border: 0; }
.tab_menu .tab_menu_dropdown a.selected, .tab_menu_container .tab_menu_dropdown a.selected { font-weight: bold; font-style: italic; border: 0; padding: 3px 5px; }
/* end tabbed menu */
/* header tabbed menu */
.header_menu { background-color: transparent; width: auto; height: 35px; color: #FFF; border-bottom: none; }
.header_menu .selected, .header_menu li.selected:hover { background-color: #FFF; }
.header_menu ul { height: 100%; bottom: 0px; }
.header_menu li { text-shadow: 0 1px 1px #FFF; filter: dropshadow(color=#FFFFFF, offx=0, offy=1); }
.header_menu li div { color: #444; padding-top: 9px; }
.header_menu li.selected div { color: #333; }
.header_menu li.selected:hover div { color: white; }
.header_menu li.selected {
background-color: #F9F9F9;
}
.header_menu li, .header_menu li:hover { padding-left: 5px; padding-right: 5px; background-color: transparent; border: 0px !important; padding-top: 0px !important; padding-bottom: 0px !important; margin: 0 !important; height: 100%; border-top-right-radius: 0px; border-top-left-radius: 0px; -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px; margin-right: 10px !important; border-top: none !important; }
.header_menu li:hover, .header_menu li.selected:hover {
box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8); -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8); -moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8);
background: #11437f; /* Old browsers */
text-shadow: 1px 1px 2px #000000; filter: dropshadow(color=#000000, offx=1, offy=1);
}
.header_menu li:hover a, .header_menu li.selected:hover a {
color: #FFF;
}
.header_menu .tab_menu_dropdown, .header_menu li.selected .tab_menu_dropdown { margin-top: 10px; border-top-right-radius: 0px; border-top-left-radius: 0px; -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px; background: #396BA7; }
.header_menu .tab_menu_dropdown a:hover, .header_menu li.selected .tab_menu_dropdown a:hover { background-color: #11437f; }
/* end header menu */
/* project menu strip */
.project_stuff { float: left; position: relative; height: 25px; border-color: transparent; list-style-type: none; margin: 0; padding: 0; }
.project_stuff img.dropdown_activator { float: left; margin: 0 3px 0 2px; border: 1px solid transparent; }
.project_stuff img.dropdown_activator.clickable:hover { background-color: #FFF; border: 1px dotted #CCC; }
.project_stuff a.activated img.dropdown_activator { background-color: #FFF; border: 1px dotted #CCC; border-right-color: #FFF; }
.project_stuff li div.popoutmenu { display: none; white-space: nowrap; }
.project_stuff li.popped_out div.popoutmenu { background-color: #FFF; z-index: 1000; padding: 2px; position: absolute; border: 1px solid #FFF; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; margin-top: -4px; margin-left: -4px; display: block; box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2); }
.project_stuff li.popped_out div.popoutmenu a { border: 0; padding: 3px 5px; display: block; color: #333; }
.project_stuff li.popped_out div.popoutmenu a.selected { font-weight: normal; color: #AAA; }
.project_stuff li.popped_out div.popoutmenu a:hover { font-weight: normal; background-color: #F5F5F5; }
.project_stuff li { height: 23px; float: left; margin: 0; padding-bottom: 0; }
.project_stuff li.project_name { font-size: 1em; font-weight: bold; padding-top: 1px; }
.project_stuff li.no_project_name { font-size: 0.9em; font-weight: normal; padding-top: 2px; color: #888; }
.project_stuff li.project_name span { font-weight: normal; font-size: 0.9em; color: #886; }
.project_stuff li.project_name a { color: #555; }
.project_stuff li.breadcrumb { color: #886; font-size: 0.9em; padding-top: 2px; }
.menu_project_strip .faded_out dark { color: #B0aa64; }
/* end project menu */
/* project front page menu */
.project_strip .project_name a { color: #333; font-size: 1.1em; }
.project_strip .project_name a:hover { color: #555; }
.project_strip .search_results { padding-top: 5px; }
.project_strip .subprojects_list { clear: both; padding-top: 10px; }
.project_strip .subprojects_list .subproject_link { font-weight: normal; margin-left: 10px;}
.project_strip nav { float: right; margin: 10px; position: relative; text-align: right; }
.project_strip nav a { font-weight: normal; }
.project_strip nav a.button { font-weight: bold; }
/* end project frontpage menu */
/* unformatted lists */
.simple_list { list-style-type: none; padding: 0; margin: 5px 0 0 0; }
.simple_list ul { list-style-type: none;}
/* generic header formatting */
.header { font-weight: bold; text-align: left; }
/* general text area styling */
.textarea_hint .header { font-weight: bold; }
.textarea_hint .example { font-style: italic; }
/* end text area styling */
/* shadowed boxes */
.shadowed { box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
a.shadowed { box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); }
a.shadowed:active { box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
/* user popups */
.user_popup, #user_details_popup { font-size: 0.9em; color: #555; }
.user_popup .user_realname { font-size: 1.2em; font-weight: bold; padding: 0 0 0 7px; width: 240px; float: left; }
#user_details_popup .user_realname { font-size: 1.5em; font-weight: bold; padding: 2px 0 0 10px; float: left; line-height: 1.2; }
.account_details { margin: 10px 0px 10px 10px; padding: 10px; font-size: 1em; }
.account_details .user_realname { font-size: 1.2em; font-weight: bold; line-height: 1.3; padding-bottom: 2px; }
.account_details .user_username { font-size: 0.9em; line-height: 1.2; }
.account_details .user_status { font-size: 0.9em; line-height: 1.2; }
#account_user_info img { float: left; margin: -3px 5px 0 0; }
#account_user_info { font-size: 1.2em; font-weight: normal; color: #CCC; margin: 15px 0 0 0; line-height: 1.2; }
#account_user_info:first-line { font-size: 1.5em; font-weight: bold; color: #333; }
#account_info_container { width: 900px; margin: 0 auto; }
#username_unavailable { padding: 10px 5px; font-size: 0.9em; color: darkred; font-weight: bold; }
#username_confirmation_popup { text-align: left; }
.button-group { position: relative; }
.profile_buttons { padding: 0; margin: 5px 0 20px 0; height: 20px; position: relative; clear: both; }
.profile_buttons .button-group { float: right; }
.profile_buttons .button, .profile_buttons .button:hover { font-weight: normal !important; padding: 2px 3px 3px 3px !important; }
#user_details_popup .user_username { font-weight: normal; font-size: 0.9em; color: #AAA; font-style: italic; line-height: 1.2; }
#user_details_popup .user_id { float: right; font-size: 2.3em; font-weight: normal; color: #C4CAE9; }
.user_popup .user_realname .user_status, #user_details_popup .user_realname .user_status { font-size: 0.8em; font-weight: normal; color: #AAA; }
#user_details_popup .user_realname .user_email { font-size: 0.6em; font-weight: normal; color: #AAA; }
.user_popup .user_details, #user_details_popup .user_details { font-size: 1.0em; font-weight: normal; padding: 3px; clear: both; }
.user_details ul.teamlist { list-style-type: none; }
.user_details ul.teamlist li { margin: 0 0 0 10px; }
/* end user popups */
/* rounded boxes styling */
.rounded_box { border-width: 1px; border-style: solid; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; padding: 3px; }
.rounded_box.green { background-color: #CFE8CF; border-color: #aaC6aa; color: #242; }
.rounded_box.yellow { background-color: #F9EF9E; border-color: #D9D9BB; }
.rounded_box.lightyellow { background-color: #F9F5B2; border-color: #D9D9BB; }
.rounded_box.verylightyellow { background-color: #FFFBD7; border-color: #E3DDa5; }
.rounded_box.red { background-color: #E8CFCF; border-color: #C6aaaa; color: #422; }
.rounded_box.blue { background-color: #585DB2; border: 0; }
.rounded_box.iceblue { background-color: #D4E5FF; border-color: #B1B8E9; }
.rounded_box.mediumgrey { background-color: #E7E7E7; border-color: #D7D7D7; }
.rounded_box.lightgrey { background-color: #F3F3F3; border-color: #DDD; }
.rounded_box.verylightgrey { background-color: #F8F8F8; border-color: #DDD; }
.rounded_box.invisible { background-color: transparent; border-color: transparent; }
.rounded_box.invisible:hover { background-color: #F5F5F5; border-color: #F5F5F5; }
.rounded_box.invisible.nohover:hover { background-color: transparent; border-color: transparent; }
.issue_detail_unmerged { background-color: #E0AC9C; border: 0; }
.issue_detail_changed { background-color: #FFF299; border: none; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
.rounded_box.cut_bottom { border-bottom-left-radius: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-left-radius: 0; -webkit-border-bottom-right-radius: 0; }
.rounded_box.cut_top { border-top-right-radius: 0; border-top-left-radius: 0; -moz-border-radius-topleft: 0; -moz-border-radius-topright: 0; -webkit-border-top-left-radius: 0; -webkit-border-top-right-radius: 0; }
.rounded_bottom { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-left-radius: 3px; -webkit-border-bottom-right-radius: 3px; }
.rounded_top { border-top-right-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; }
.rounded_box.borderless { border: 0; }
.rounded_box .description { padding: 3px 3px 3px 0; }
.rounded_box .question_header { font-size: 0.9em; }
.rounded_box.iceblue .percent_filled { background-color: #88C; }
.rounded_box.red .percent_filled { background-color: #C88; }
.rounded_box.yellow .percent_filled { background-color: #CC8; }
.rounded_box.lightgreen .percent_filled, .rounded_box.green .percent_filled { background-color: #8C8; }
.rounded_box.iceblue .percent_unfilled { background-color: #aaF; }
.rounded_box.red .percent_unfilled { background-color: #FCC; }
.rounded_box.yellow .percent_unfilled { background-color: #FFa; }
.rounded_box.lightgreen .percent_unfilled, .rounded_box.green .percent_unfilled { background-color: #CFC; }
.rounded_box.red .faded_out { color: #B77; }
.rounded_box.iceblue .faded_out { color: #99C; }
.issue_detail_unmerged .faded_out { color: #FFD9D6; }
.rounded_box.lightgreen .faded_out, .rounded_box.green .faded_out { color: #7B7; }
.rounded_box.iceblue .faded_out dark { color: #77C; }
.rounded_box.iceblue th { border-color: #a0aDC0; background-color: #C1D1E8; }
.rounded_box.iceblue .header_div { border-color: #a0aDC0; }
.rounded_box.lightgrey.highlighted { background-color: #FFF299; border: 0; }
.rounded_box.blue a { color: #B5B5FF; font-weight: bold; }
.rounded_box.lightgreen a, .rounded_box.green a { color: #4E703D; border-bottom-color: #4E703D; }
.rounded_box.blue a:hover { color: #C9C9FF; font-weight: bold; }
.rounded_box.lightgreen a:hover, .rounded_box.green a:hover { color: #6a9753; border-bottom-color: #6a9753; }
.rounded_box.white { background-color: #FFF; border-color: #CCC; }
.rounded_box.white th { font-weight: bold; background-color: #F1F1F1; border-bottom: 1px solid #DDD; padding-bottom: 2px; }
.rounded_box.white thead.light th { background-color: #F9F9F9; border-color: #EEE; }
/* end rounded box styling */
/* hoverable styles */
tbody.hover_highlight tr:hover, tr.hover_highlight:hover, ul.hover_highlight li:hover { background-color: #F1F1F1; }
tbody.hover_highlight tr:hover td.highlighted_column, tr.hover_highlight:hover td.highlighted_column { background-color: #E5E5E5; }
/* selected green and selected red styling */
tr.selected_green { background-color: #CFE8CF; }
tr.selected_green:hover { background-color: #BED7BE; }
tr.selected_red { background-color: #F39a9a; }
tr.selected_red:hover { background-color: #E68989; }
tr.selected_red td { color: #FFF; }
td.selected_red { background-color: #F39a9a; color: #FFF; }
td.selected_red:hover { background-color: #E68989; color: #FFF; }
td.selected_red span { color: #FFF; }
/* end selected green / red */
/* some table styling */
.padded_table td { padding: 2px; }
td.highlighted_column { background-color: #F1F1F1; }
th.highlighted_column { background-color: #C1C1C1; }
table.cleantable { border: 0; border-collapse: collapse; }
table.cleantable td, table.cleantable th { border: 1px solid #DDD; padding: 4px; }
table.cleantable th { text-align: center; }
/* end table styling */
/* configuration section styling */
.config_header { margin: 5px 0px 5px 0px; background-color: transparent; font-weight: bold; border: 0px; padding: 7px 0px 3px 0px; border-bottom: 1px solid #DDD; font-size: 1.1em; }
.config_explanation { color: #999; padding: 5px 0 10px 5px; }
.config_explanation a { color: #549D54; font-weight: bold; }
.config_buttons, .config_badges { list-style: none; padding: 0px; }
.config_buttons { width: 235px; padding-top: 7px; padding-bottom: 7px; margin-left: 10px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
.config_buttons li { margin: 0; padding: 0px; text-align: left; width: 235px; font-size: 0.9em; border: 0; background-color: transparent; }
.config_buttons li:hover { background-color: #E5E5E5; }
.config_buttons li.config_selected { background-color: #FFF; font-weight: bold; }
.config_buttons li a { display: block; height: 20px; padding: 5px 0 0px 5px; }
.config_buttons li a:hover { border: 0px; }
.config_badges { margin: 0; }
.config_badges li { margin: 5px 10px 5px 0; width: 315px; font-size: 0.9em; border: 1px solid #DDD; padding: 0px; background-color: #FFF; float: left; }
.config_badges li:hover { border-color: #AAA; background-color: #F5F5F5; }
.config_badges li a { display: block; height: 60px; padding: 7px; }
.config_badges li a:hover { border: 0px; }
.config_badges li a span { color: #555; }
.config_badges b { font-size: 1.1em; display: block; margin-bottom: 5px; }
#config_modules .header .module_shortname { font-weight: normal; font-size: 0.95em; }
#config_modules .content { padding-top: 5px; text-align: left; }
.projectbox .permission_list ul { width: 670px; }
#tab_permissions_pane .permission_list ul { width: 780px; }
.projectbox td { font-size: 0.9em; }
#issuetypes_menu_panes .content { padding: 5px; }
.issuetype_box a.image, .issuetype_box a.image:hover { border: 0; }
.issuetype_scheme_associate_link { font-weight: normal; font-size: 0.9em; }
#config_issuefields .issuefield_item_option { cursor: move; }
.more_than_one_project_warning { color: #C55; }
.tab_content { padding-top: 10px; }
.tab_header { padding-top: 10px; font-weight: bold; border-bottom: 1px solid #DDD; }
/* permissions configuration styling */
.config_permissions { font-size: 0.9em; }
.config_permissions .faded_out.smaller { font-size: 0.7em; padding-left: 10px; }
.config_permissions .permission_list .tab_pane { border: 1px solid #AAA; border-top: 0; padding: 10px; }
.config_permissions .permission_list .tab_pane p { margin-bottom: 15px; }
.permission_list ul { list-style-type: none; padding: 0; margin: 0; width: 715px; }
.permission_list ul li { margin: 0px; padding: 0; font-weight: normal; clear: both; background-color: transparent; }
.permission_list ul li:hover { background-color: #FaFaFa; }
.permission_list ul li a { display: block; padding: 2px 0 2px 0; }
.permission_list ul li a.permission_description { display: block; width: 670px; }
.permission_list ul li a:hover { border: 0; }
.permission_list ul li .content a { display: inline; }
.permission_list ul li ul { margin: 5px 10px 20px 10px; width: 665px; }
.permission_list ul li ul li { font-size: 0.9em; }
.permission_list ul li ul li:hover { background-color: #F1F1F1; }
.permission_list ul li ul li a.permission_description { display: block; width: 580px; }
.permission_list ul li ul li ul { margin: 10px 10px 25px 10px; width: 635px; }
.permission_list ul li ul li ul li { font-size: 0.8em; }
.permission_list ul li ul li ul li:hover { background-color: #E8E8E8; }
.permission_list ul li ul li ul li a.permission_description { display: block; width: 540px; }
/* end permissions */
/* configure users / teams / groups styling */
#create_group_form label, #create_team_form label, #create_client_form label { }
#create_group_form input[type="text"], #create_team_form input[type="text"], #create_client_form input[type="text"] { width: 200px; }
#create_group_form input[type="submit"], #create_team_form input[type="submit"], #create_client_form input[type="submit"] { font-size: 0.9em; }
.groupbox_header, .teambox_header, .clientbox_header { font-weight: bold; }
.groupbox_membercount, .teambox_membercount, .clientbox_membercount { font-weight: normal; font-size: 0.8em; color: #888; }
/* end users / teams / groups */
#project_table .config_header { font-size: 0.9em; }
/* workflow styling */
.scheme_list li { padding: 3px; font-size: 0.9em; }
.scheme_list li table td { font-size: inherit; padding: 0; margin: 0; }
.scheme_list td.workflow_info { width: 400px; }
.scheme_list td.workflow_info.workflow_scheme { width: 350px; }
.scheme_list td.workflow_inactive { color: #A88; font-weight: bold; width: 100px; text-align: center; }
.scheme_list td.workflow_active { color: #390; font-weight: bold; width: 100px; text-align: center; }
.scheme_list td.workflow_steps { width: 100px; text-align: left; }
.scheme_list td.workflow_steps span { font-weight: bold; }
.scheme_list td.workflow_scheme_issuetypes { width: 250px; text-align: center; }
.scheme_list td.workflow_scheme_projects { width: 200px; text-align: center; font-size: 1em; }
.scheme_list td.workflow_scheme_issuetypes span, .scheme_list td.workflow_scheme_projects span { font-weight: bold; }
.scheme_list td.workflow_actions { width: 130px; font-weight: bold; font-size: 0.9em; text-align: right; }
.scheme_list td.workflow_actions .button-group { float: right; }
.scheme_list.issuetype_scheme_list td.workflow_info { width: 400px; }
.workflow_name { font-weight: bold; }
.workflow_description, .workflow_name span.builtin { font-weight: normal; font-style: italic; font-size: 0.9em; }
.workflow_name span.builtin { color: #AAA; }
.workflow_description { color: #777; }
.workflow_change_div { height: 400px; overflow: auto; margin-top: 10px; }
#no_such_workflow_error { margin-top: 10px; }
#workflow_steps_container { }
#workflow_steps_container .workflow_steps_intro, #workflow_step_container .workflow_step_intro { margin: 5px 0 5px 0; font-size: 0.9em; }
.workflow_step_intro .header { font-size: 1.3em; }
#workflow_steps_list { width: 100%; }
#workflow_steps_list td, #workflow_steps_list th { font-size: 0.9em; }
#workflow_steps_list_tbody tr.step td { border-bottom: 1px dotted #AAA; }
#workflow_steps_list_tbody tr.step a.step_name { color: #555; }
#workflow_steps_list_tbody tr.step a.step_name:hover { color: #777; }
#workflow_steps_list_tbody tr.step a.step_name.faded_out { color: #AAA; }
#workflow_steps_list_tbody tr.step a.step_name.faded_out:hover { color: #CCC; }
#workflow_steps_list_tbody tr.step td.workflow_step_actions a { font-size: 0.9em; }
#workflow_steps_list_tbody tr.status td { border-bottom: 0; }
#workflow_steps_list_tbody dl { font-size: 0.9em; }
#workflow_steps_list_tbody dt label.optional span { font-weight: normal; color: #AAA; }
#workflow_steps_list_tbody dt { width: 150px; text-align: right; padding-right: 5px; }
#workflow_steps_list_tbody dd { width: 500px; }
#workflow_steps_list_tbody .add_transition_separation { font-size: 1px; line-height: 0; margin: 10px 20px; border-bottom: 1px dotted #AAA; }
#workflow_steps_list_tbody input[type="submit"] { font-size: 1.1em; font-weight: bold; }
#workflow_steps_list_tbody form a { font-weight: bold; }
.workflow_step_transition_name { font-weight: bold; font-size: 0.9em; font-style: italic; }
.workflow_step_transition_outgoing_step { margin-left: 5px; font-size: 0.95em; color: #AAA; font-weight: normal; font-style: italic; }
#workflow_details_transition, #workflow_details_step { margin-top: 0; float: left; width: 420px; }
#workflow_details_transition label, #workflow_details_step label { font-size: 0.9em; }
#workflow_details_transition li, #workflow_details_step li { margin-bottom: 5px; }
#workflow_details_transition dl, #workflow_details_step dl { font-size: 0.9em; }
#workflow_details_transition dt, #workflow_details_step dt { width: 110px; }
#workflow_details_transition dd, #workflow_details_step dd { width: 290px; }
#workflow_details_transition dd.description, #workflow_details_step dd.description { font-style: italic; }
#workflow_details_step dd div.workflow_step_status { line-height: 0; height: 14px; width: 14px; font-size: 1px; float: left; margin-right: 5px; border: 1px solid #AAA; }
#workflow_browser_step { float: right; width: 300px; padding: 5px; text-align: center; }
#workflow_browser_step .header { font-size: 1.1em; text-align: center; margin-bottom: 5px; }
#workflow_browser_step .content { font-size: 0.9em; text-align: center; }
.workflow_browser_step_image { line-height: 0; clear: both; }
.workflow_browser_step_transition { padding: 2px; border: 1px dotted #AAA; background-color: #F8F8F8; }
.workflow_browser_step_transition.transition { padding-left: 15px; }
.workflow_browser_step_name { padding: 5px; font-size: 1.1em; font-style: italic; font-weight: normal; }
/* end workflow styling */
/* end config styling */
/* sidebar formatting */
.side_bar .header { margin: 2px 0 5px 0; padding: 3px 3px 3px 5px; font-weight: bold; border-bottom: 1px solid #CCC; background-color: transparent; }
.side_bar .content { padding: 0 0 3px 5px; font-size: 0.9em; }
/* project list, client/team dashboard and overview */
ul.project_list { margin-bottom: 30px; text-align: left; }
ul.project_list li { margin: 0px; font-size: 1.0em; font-weight: bold; padding: 5px 0 5px 0; clear: both; }
.client_dashboard, .project_overview { clear: both; }
.client_dashboard .header, .project_overview .header { padding: 5px; margin-bottom: 8px; border-bottom: 1px solid #DDD; font-size: 1.1em; }
.client_dashboard { padding: 10px; }
.team_dashboard, .project_overview { clear: both; }
.team_dashboard .header, .project_overview .header { padding: 5px; margin-bottom: 8px; border-bottom: 1px solid #DDD; font-size: 1.1em; }
.project_overview .button-group { float: right; }
.project_overview .button-group .button { font-weight: normal !important; }
.team_dashboard { padding: 10px; }
.dashboard_client_info { margin-bottom: 10px; width: 100%; }
.dashboard_client_info .dashboard_client_header { font-weight: bold; font-size: 2.1em; }
.dashboard_client_info .dashboard_client_viewusers { float: right; }
.dashboard_team_info { margin-bottom: 10px; width: 100%; }
.dashboard_team_info .dashboard_team_header { font-weight: bold; font-size: 2.1em; }
.dashboard_team_info .dashboard_team_viewusers { float: right; }
.team_dashboard_table, .client_dashboard_table { width: 100%; }
.team_dashboard_table td.padded, .client_dashboard_table td.padded { padding: 10px; padding-top: 0; vertical-align: top; }
.team_dashboard_table td.team_dashboard_projects, .client_dashboard_table td.client_dashboard_projects { padding-left: 0; }
.team_dashboard_table td.team_dashboard_users, .client_dashboard_table td.client_dashboard_users { padding-right: 0; width: 350px; }
ul.client_users, ul.team_users, ul.project_users { margin: 0; padding: 0; }
ul.client_users li, ul.team_users li, ul.project_users li { list-style-type: none; padding-bottom: 5px; margin: 0;}
.project_commits_box { margin-right: 10px; }
.commit_box { margin-top: 5px }
/* end project styling */
/* account page tab panes content */
#account_tabs_panes .content { padding: 5px 0 15px 5px; text-align: left; font-size: 0.95em; }
/* friend names links */
a.friend { color: #0000a4; }
a.friend:hover { border-bottom: 1px dotted #0000a4; }
.friends_status { font-size: 0.9em; color: #CCC; }
/* reporting an issue styles */
.report_button { float: right; }
.issuetype_list { text-align: center; padding: 0; margin: 10px auto 0 auto; clear: both; }
.issuetype_list .button, .issuetype_list .button:hover { margin: 10px; font-size: 1.3em; font-weight: normal; padding: 15px !important; text-align: center; min-width: 130px; }
.issuetype_list .button img { display: block; float: none; clear: both; margin: 10px auto 15px auto; }
.report_issue_header { margin: 10px auto 0 auto; font-size: 1.5em; font-weight: bold; padding: 2px 0 10px 0; width: 990px; }
#report_issue_more_options_indicator { text-align: left; margin-top: 10px; }
#reportissue_content { width: 1010px; margin: 0 auto; text-align: center; }
.report_issue_desc { width: auto; margin: 0 auto 0 auto; text-align: left; }
.report_issue_desc select { }
#report_more_here { color: #999; font-size: 1.1em; text-align: center; padding-top: 20px; }
#report_form { margin: 10px auto 0 auto; padding: 0; width: 1000px; text-align: left; }
#report_form table { width: 990px; margin: 0 auto; }
#report_form table table { width: auto; }
#report_form label { font-size: 1.1em; padding: 3px 0 3px 0; font-weight: normal; }
.backdrop_detail_content #report_form label { font-size: 1em; }
#report_form label span { display: none; }
#report_form label.required { font-weight: bold; }
#report_form label.required span { display: inline; }
#report_form input[type="text"] { font-size: 1.3em; padding: 4px; height: 20px; text-align: left; width: 100%; }
.backdrop_detail_content #report_form input[type="text"] { font-size: 1.1em; padding: 2px; }
#report_form input#title { width: 800px; }
#report_form select { font-size: 1.1em; padding: 2px; height: 24px; text-align: left; width: 100%; }
.backdrop_detail_content #report_form select { font-size: 1em; padding: 1px; height: 22px; text-align: left; width: auto; }
.report_issue_help { padding: 5px 0 0 2px; }
.backdrop_detail_content #report_issue_reported_issue_details { padding: 5px; font-size: 1.1em; }
.backdrop_detail_content .report_issue_help { padding: 3px 0 0 1px; }
.backdrop_detail_content .reportissue_additional_information_container { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; padding: 3px; background-color: #F5F5F5; margin-top: 10px; margin-bottom: 0; }
.backdrop_detail_content .additional_information { float: left; width: 323px; margin: 0 0 10px 5px; }
.backdrop_detail_content .additional_information .report_issue_help { display: none; }
#report_form table.additional_information { margin-top: 10px; }
reportissue_additional_information_container .markItUp { display: none; }
.report_issue_submit_container { font-size: 1.1em; }
.report_issue_submit_container .button, .report_issue_submit_container .button:hover { float: right; font-size: 1.1em; padding: 0 5px !important; }
.report_issue_submit_container img { float: right; margin-right: 5px; }
#report_issue_add_extra { margin-top: 15px; color: #333; }
#report_form .textarea_hint { color: #AAA; font-weight: normal; padding: 5px 0 0 0; }
#issue_view .textarea_hint { color: #999; font-weight: normal; padding: 5px 0 0 0; }
#issue_view pre { padding: 3px; background-color: #F1F1F1; border: 1px dotted #AAA; }
#issue_view { position: relative; z-index: 100; }
#issue_view fieldset { border: 0; border-top: 1px dotted #AAA; padding: 5px; margin: 0; }
#issue_view fieldset legend { border: 0; padding: 5px; font-weight: bold; font-size: 1.1em; }
.reportissue_error tr { background-color: #FEE; }
.reportissue_error tr td input, .reportissue_error tr td textarea, .reportissue_error tr td select { background-color: #FEE; border-color: #B77; }
.reportissue_error label { color: #955; }
.reportissue_error .faded_out dark { color: #aa8D8D; }
#reportissue_extrafields { list-style-type: none; padding: 0; margin: 10px 0 0 0; width: 1005px; clear: both; }
#reportissue_extrafields li { font-weight: normal; clear: none; margin: 5px; min-height: 26px; width: 310px; text-align: left; float: left; }
#reportissue_extrafields li img { margin: 2px 5px 0 0; float: left; }
#reportissue_extrafields li div { clear: none; margin-top: 2px; }
#reportissue_extrafields li select, #reportissue_extrafields input[type="text"] { width: 255px; font-size: 0.8em; height: 20px; padding: 1px; float: left; }
#reportissue_extrafields li a.img:hover { border-bottom: 0; }
/* end report issue styling */
/* very visible green button */
.nice_button { padding: 0px; color: #FFF; border: 0; position: relative; display: inline; text-align: center; margin-left: 10px; }
.nice_button input { border: 0; border-top: 1px solid #9D9; color: #FFF; padding: 3px; font-weight: bold; background-color: #5a5; cursor: pointer; }
.nice_button input:active { background-color: #7B7; }
.nice_button input:hover { background-color: #8C8; }
.nice_button.disabled { padding: 0px; color: #FFF; border: 0; position: relative; display: inline; text-align: center; margin-left: 10px; }
.nice_button.disabled input { border: 0; border-top: 1px solid #F9F9F9; color: #AAA; padding: 3px; font-weight: bold; background-color: #EEE; cursor: pointer; }
.nice_button.disabled input:active { background-color: #F5F5F5; }
.nice_button.workflow { padding: 0px; color: #FFF; border: 1px solid #E3DDA5; position: relative; display: inline; text-align: center; margin: 0; }
.nice_button.workflow input { border: 0; border-top: 0; border-left: 1px solid #CDC895; border-bottom: 1px solid #CDC895; color: #6E6E53; padding: 2px 3px; font-weight: normal; background-color: #E3DDA5; cursor: pointer; }
.nice_button.workflow input:active { background-color: #E9E9B0; }
.nice_button.workflow input:hover { background-color: #D3CE99; }
.workflow_actions .button, .workflow_actions .button:hover, .button-group .button, .button-group .button:hover { border-radius: 0; border-left-width: 0; -moz-border-radius: 0; -webkit-border-radius: 0; }
.workflow_actions .button.first, .workflow_actions .button.first:hover, .button-group .button:first-child, .button-group .button:first-child:hover { border-left-width: 1px; border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; }
.workflow_actions .button.last, .button-group .button:last-child { border-top-right-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-bottom-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; }
.workflow_actions li.more_actions { margin-left: 5px; }
#workflow_actions .more_actions_dropdown { margin-top: 20px; }
.workflow_actions li.workflow { position: relative; }
.workflow_actions li.workflow .tooltip { left: auto; right: 0; bottom: auto; top: 30px; }
.workflow_actions li.workflow .tooltip:before, .workflow_actions li.workflow .tooltip:after { left: auto; right: 10px; }
.button-group .button { float: left; }
.project_header_right .button, .project_header_right .button:hover, #tab_csv_pane .button-group .button, #tab_csv_pane .button-group .button:hover, .project_strip .button-group .button, .project_strip .button-group .button:hover { padding: 4px 10px !important; font-size: 1em; font-weight: normal !important; }
/* end very visible button */
.rounded_list_first_item { border-top-right-radius: 3px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 3px; }
.rounded_list_last_item { border-bottom-right-radius: 3px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 3px; }
#issue_details { position: relative; }
#issue_details dl { font-size: 0.9em; }
#issue_details ul.issue_details { margin: 0; }
.issue_detail_field { margin: 0 5px 0 0; padding: 0; width: 48%; float: left; position: relative; }
.issue_detail_field dl { border-bottom: 1px solid transparent; height: 24px; }
.issue_detail_field dt { min-width: 150px; }
.issue_detail_field:hover dl { background-color: #F1F1F1; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
/* workflow actions */
#workflow_actions { position: absolute; margin-top: 3px; right: 10px; height: 25px; z-index: 102; }
ul.workflow_actions { margin-top: 0; }
ul.workflow_actions li { display: block; float: left; border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; padding: 0; line-height: 1; }
ul.workflow_actions li form { display: inline; margin: 0; padding: 0; }
ul.workflow_actions li input, ul.workflow_actions li:hover input { padding: 0 2px 1px 2px; font-weight: normal; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important; -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important; }
ul.workflow_actions li:hover { box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
#viewissue_find_issue_input { width: 350px; }
/* end workflow actions */
/* fullpage (faded out) backdrop styling */
#fullpage_backdrop ul.duplicate_issues { list-style-type: none; padding: 0; margin: 0; clear: both; }
#fullpage_backdrop ul.duplicate_issues li { font-weight: normal; margin: 0 0 3px 0; text-align: left; }
#fullpage_backdrop input[type="submit"] { font-weight: bold; }
#fullpage_backdrop ul.duplicate_issues li input[type="checkbox"] { margin-left: 0; }
#fullpage_backdrop ul.duplicate_issues li { padding-left: 5px; margin-bottom: 5px; }
#fullpage_backdrop ul.duplicate_issues { margin: 10px 0 5px 0; }
.fullpage_backdrop_content { position: relative; z-index: 100001; }
.fullpage_backdrop { background-color: rgba(0, 0, 0, 0.5); z-index: 100000; width: 100%; height: 100%; overflow: auto; position: fixed; top: 0; left: 0; margin: 0; padding: 0; text-align: center; }
.backdrop_box { position: absolute; top: 60px; left: 50%; z-index: 100001; clear: both; padding: 0 !important; }
.backdrop_box#reportissue_container { top: 10px; }
.backdrop_box.small { width: 400px; margin: 0 -200px 0 -200px; }
.backdrop_box.mediumsmall { width: 500px; margin: 0 -250px 0 -250px; }
.backdrop_box.medium { width: 600px; margin: 0 -300px 0 -300px; }
.backdrop_box.large { width: 800px; margin: 0 -400px 200px -400px; }
.backdrop_box.huge { width: 1010px; margin: 0 -500px 200px -500px; }
.backdrop_box .backdrop_detail_header { font-weight: bold; padding: 7px; font-size: 0.9em; text-align: left; color: white; text-shadow: 1px 1px 2px #000000; filter: dropshadow(color=#000000, offx=1, offy=1); }
.backdrop_detail_content { font-weight: normal; font-size: 1.0em; padding: 5px; background: white; text-align: left; }
#reportissue_container .backdrop_detail_content { padding: 5px; font-size: 0.9em; }
#reportissue_container .backdrop_detail_footer { padding: 5px; font-size: 1.1em; }
#reportissue_container .backdrop_detail_footer a { font-weight: normal; }
.backdrop_detail_content #report_issue_add_extra, .backdrop_detail_content #reproduction_steps_div { display: none; }
.backdrop_detail_content .tab_menu { margin-top: 30px; margin-bottom: 10px; font-size: 1.1em; }
.backdrop_detail_footer { clear: both; font-weight: bold; font-size: 0.9em; padding: 5px; text-align: right; background-color: #FFF; }
#dialog_title, #dialog_content {margin-left: 75px; }
#dialog_yes, #dialog_no { border-bottom: none !important; }
/* end backdrop styling */
/* main issue view styling */
/* issue info boxes */
#viewissue_menu li { box-shadow: 1px -1px 1px rgba(50, 50, 50, 0.2); -webkit-box-shadow: 1px -1px 1px rgba(50, 50, 50, 0.2); -moz-box-shadow: 1px -1px 1px rgba(50, 50, 50, 0.2); }
#viewissue_menu li.selected { box-shadow: 2px -2px 2px rgba(50, 50, 50, 0.2); -webkit-box-shadow: 2px -2px 2px rgba(50, 50, 50, 0.2); -moz-box-shadow: 2px -2px 2px rgba(50, 50, 50, 0.2); }
#viewissue_menu li a { font-size: 1em; }
#issue_info_container { text-align: left; z-index: 0; vertical-align: middle; font-size: 1em; font-weight: normal; color: #F5F5F5; width: auto; position: relative; margin: 0 5px 3px 5px; }
.issue_info_backdrop { background-color: #DDD; z-index: 100; filter:alpha(opacity=90); -moz-opacity:.90; opacity:.90; width: 100%; height: 100%; position: absolute; top: 0; left: 0; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-top-left-radius: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-right-radius: 0; -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; }
.issue_info { z-index: 110; color: #333; text-shadow: 1px 1px 1px #FFF; position: relative; padding: 3px 3px 3px 5px; font-weight: normal; min-height: 22px; }
.issue_info .buttons { float: right; margin: 0; }
.issue_info .buttons .button input, .issue_info .buttons .button button { padding: 0 4px; font-size: 0.9em; }
.issue_info a { font-size: 0.95em; font-weight: bold; }
.issue_info.aligned { margin: 10px auto 5px auto; padding: 3px; width: auto; text-align: center; }
.issue_info.full_width { margin: 5px 5px 0 5px; padding: 5px; position: relative; }
.issue_info.full_width img { float: left; margin: 0 10px 0 5px; }
.issue_info .header { font-size: 1.1em; line-height: 1.3; }
.issue_info .content, .notfound_error .content { font-weight: normal; font-size: 0.95em; line-height: 1; }
.issue_info.error.active ~ .issue_info_backdrop { background-color: #FAA; }
#notfound_error { vertical-align: middle; text-align: center; padding: 5px; color: #222; font-weight: bold; font-size: 1.1em; width: 900px; }
#notfound_error .content { font-weight: normal; }
#notfound_error .header { text-align: center; }
#viewissue_saved { cursor: pointer; }
#viewissue_error .content { font-size: 1.1em; padding-top: 5px; padding-bottom: 5px; text-align: left; }
/* end issue info boxes */
/* issue extra data (pain and votes) - includes search result styling */
#viewissue_header_container { margin: 5px; }
#viewissue_header_container.fixed { width: 100%; position: fixed; top: 0; left: 0; margin: 0; z-index: 1000; }
#viewissue_header_container.fixed #issue_info_container .issue_info_backdrop { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
#viewissue_header_container table.title_area {
table-layout: fixed;
position: relative;
width: 100%;
border-bottom: 1px solid #CCC;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
background: -moz-linear-gradient(top, #FFFFFF 0%, #F1F1F1 100%); /* FF3.6+ */
background: -khtml-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F1F1F1)); /* Chrome,Safari4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F1F1F1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F1F1F1',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #FFFFFF 0%,#F1F1F1 100%); /* W3C */
}
.blocking #viewissue_header_container table.title_area {
border-bottom-color: #730B0B;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
background: -moz-linear-gradient(top, #FFFFFF 0%, #F1F1F1 70%, #FF8181 100%); /* FF3.6+ */
background: -khtml-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(70%,#F1F1F1), color-stop(100%,#FF8181)); /* Chrome,Safari4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(70%,#F1F1F1), color-stop(100%,#FF8181)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FFFFFF 0%,#F1F1F1 70%, #FF8181 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FFFFFF 0%,#F1F1F1 70%, #FF8181 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #FFFFFF 0%,#F1F1F1 70%, #FF8181 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FF8181',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #FFFFFF 0%,#F1F1F1 70%, #FF8181 100%); /* W3C */
}
#workflow_actions.fixed { position: fixed; top: 32px; right: 3px; margin-top: 0; z-index: 1001; display: block; }
#viewissue_header_container.fixed #votes_additional { display: none; }
#workflow_actions.fixed #comment_add_button { margin-left: 5px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
#comment_add_button { padding: 0; }
#viewissue_comments #comment_add_button .button { padding: 2px 10px !important; font-size: 1em; }
.user_pain, .votes { font-size: 2.3em; font-weight: bold; line-height: 1.2; }
.user_pain { color: #91A291; }
#votes_additional { vertical-align: middle; }
.votes { color: #999; text-align: center; }
.votes .votes_header { text-transform: uppercase; font-size: 0.43em; line-height: 1.3; }
#vote_up, #vote_down { width: 16px; text-align: center; padding: 2px; }
.user_pain_calculated { font-size: 0.8em; font-weight: bold; color: #91a291; }
.search_results .yellow_borderless .user_pain { color: #B6aC6D; }
.search_results .user_pain, .search_results .votes { font-size: 1.5em; }
.search_results .votes { color: #88C; }
.search_results .red_borderless .user_pain { color: #B55; }
.userpain_below_threshold td { border-top: 2px solid #B77; }
.userpain_below_threshold td .status_table td { border-top: 0; }
/* end issue pain and votes */
/* issue edit and undo link styling - also what makes them appear and disappear */
#title_edit { margin-top: 5px; }
img.dropdown { float: left; margin-right: 5px; display: none; cursor: pointer; }
img.spinning { float: right; margin-right: 5px; }
dd:hover img.dropdown, .hoverable:hover img.dropdown { float: left; margin-right: 5px; display: inline; }
.issue_detail_changed img.undo { float: left; margin-right: 5px; display: inline; }
img.undo { display: none; }
#viewissue_left_box_issuetype img.undo, #viewissue_left_box_issuetype img.dropdown { margin-top: 7px; }
/* end edit and undo styling */
/* issue left hand list */
.issue_lefthand { width: 300px; padding: 0; vertical-align: top; }
dl { margin: 0; font-size: 0.85em; padding: 0 0 0 0; position: relative; min-height: 16px; clear: both; }
dt { width: 85px; font-weight: bold; padding: 3px 2px 2px 2px; clear: both; }
dd { float: left; display: block; width: 195px; font-weight: normal; margin: 0; padding: 3px 5px 1px 2px; min-height: 16px; }
#viewissue_left_box_top { margin: 5px; }
#viewissue_left_box_bottom { margin: 5px; }
#viewissue_left_box_issuetype, #viewissue_left_box_status { margin: 0 5px 0 2px; }
#viewissue_left_box_issuetype table tr td { font-size: 1.1em; font-weight: bold; }
#viewissue_left_box_status { font-weight: normal; }
#viewissue_left_box_status table tr td { font-weight: normal; }
#viewissue_left_box_top #status_header { padding: 2px; }
.more_actions_dropdown { padding: 0; position: absolute; z-index: 1000001; }