1 | /* others */ |
---|
2 | |
---|
3 | #imageToolBar * { |
---|
4 | background: inherit; |
---|
5 | } |
---|
6 | |
---|
7 | /* So that non-links are slightly greyed out */ |
---|
8 | .content .navigationBar, SPAN.calItemEmpty, TD.calDayCellEmpty { |
---|
9 | color: #b0b0b0; |
---|
10 | } |
---|
11 | |
---|
12 | /* Tables & forms */ |
---|
13 | |
---|
14 | /* IE <= 6 is so bad with this that you can't merge with the following rule */ |
---|
15 | INPUT[type="text"], INPUT[type="password"], INPUT[type="button"], |
---|
16 | INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] { |
---|
17 | color:black; |
---|
18 | background-color: #d3d3d3; /* lightgrey */ |
---|
19 | } |
---|
20 | |
---|
21 | INPUT.text, INPUT.password, INPUT.button, |
---|
22 | INPUT.submit, INPUT.reset, INPUT.file, |
---|
23 | SELECT, TEXTAREA { |
---|
24 | color:black; |
---|
25 | background-color: #d3d3d3; /* lightgrey */ |
---|
26 | } |
---|
27 | |
---|
28 | INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus { |
---|
29 | background-color: #f5f5f5; /* whitesmoke */ |
---|
30 | } |
---|
31 | |
---|
32 | /* some theme set a border on INPUT which is not pretty for radio/checkbox */ |
---|
33 | INPUT[type="radio"], INPUT[type="checkbox"] { |
---|
34 | border: none; /* <= Opera needs this */ |
---|
35 | } |
---|
36 | |
---|
37 | INPUT.radio, INPUT.checkbox { |
---|
38 | border: none; /* <= IE6 needs this */ |
---|
39 | } |
---|
40 | |
---|
41 | /* rate buttons displayed like links */ |
---|
42 | INPUT.rateButton, INPUT.rateButtonSelected, INPUT.rateButtonStarFull, INPUT.rateButtonStarEmpty { |
---|
43 | color:inherit; |
---|
44 | background-color:transparent; /* Konqueror doesn't accept transparent here */ |
---|
45 | } |
---|
46 | |
---|
47 | .errors { /* Errors display */ |
---|
48 | color: red; |
---|
49 | background-color: #ffe1e1; |
---|
50 | font-weight: bold; |
---|
51 | text-align: left; |
---|
52 | margin: 5px; |
---|
53 | border: 1px solid red; |
---|
54 | background-image: url(icon/admin/errors.png); |
---|
55 | background-repeat: no-repeat; |
---|
56 | background-position: top right; |
---|
57 | padding: 10px 50px 10px 10px; |
---|
58 | } |
---|
59 | |
---|
60 | /** |
---|
61 | * Informations box in administration |
---|
62 | */ |
---|
63 | .infos { |
---|
64 | text-align: left; |
---|
65 | color: #002000; |
---|
66 | background-color: #98fb98; /* palegreen */ |
---|
67 | background-image: url(icon/admin/infos.png); |
---|
68 | background-repeat: no-repeat; |
---|
69 | background-position: top right; |
---|
70 | margin: 0px; |
---|
71 | padding: 10px 50px 10px 10px; |
---|
72 | } |
---|
73 | |
---|
74 | /** |
---|
75 | * Header message like upgrade or adviser mode |
---|
76 | */ |
---|
77 | .header_msgs { |
---|
78 | text-align:center; |
---|
79 | font-weight: bold; |
---|
80 | color:#696969; /* dimgray */ |
---|
81 | background-color: #d3d3d3; |
---|
82 | margin: 1px; |
---|
83 | padding: 1px; |
---|
84 | float:right; |
---|
85 | position: absolute; |
---|
86 | top: 1px; |
---|
87 | right: 1px; |
---|
88 | width:20%; |
---|
89 | padding-top: 5px; |
---|
90 | padding-right: 0px; |
---|
91 | padding-bottom: 0px; |
---|
92 | padding-left: 30px; |
---|
93 | } |
---|
94 | |
---|
95 | /** |
---|
96 | * Header notes box in public/administration |
---|
97 | */ |
---|
98 | .header_notes { |
---|
99 | border: 1px solid #aaaaaa; /* border color and style */ |
---|
100 | text-align: center; |
---|
101 | background-image: url(icon/note.png); |
---|
102 | background-repeat: no-repeat; |
---|
103 | background-position: top left; |
---|
104 | font-weight: bold; |
---|
105 | margin: 14px; |
---|
106 | float:right; |
---|
107 | color:#000000; |
---|
108 | position: absolute; |
---|
109 | top: 1px; |
---|
110 | right: 1px; |
---|
111 | width:20%; |
---|
112 | padding-top: 5px; |
---|
113 | padding-right: 0px; |
---|
114 | padding-bottom: 0px; |
---|
115 | padding-left: 30px; |
---|
116 | } |
---|
117 | |
---|
118 | LEGEND { |
---|
119 | font-style: italic; |
---|
120 | } |
---|
121 | |
---|
122 | /*calendar*/ |
---|
123 | SPAN.calItem, SPAN.calItemEmpty, |
---|
124 | TD.calDayCellEmpty, TD.calDayCellFull { |
---|
125 | border: 1px solid gray; |
---|
126 | } |
---|
127 | |
---|
128 | |
---|