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