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