source: trunk/admin/themes/default/default-colors.css @ 5364

Last change on this file since 5364 was 5364, checked in by plg, 14 years ago

bug 1495: "infos" and "errors" blocks are more visible for the "roma" admin
theme. I have simply used the same CSS rules as for "clear" theme.

  • Property svn:eol-style set to LF
File size: 1.1 KB
Line 
1
2
3/* So that non-links are slightly greyed out */
4.content .navigationBar {
5        color: #999;
6}
7
8/* Tables & forms */
9
10INPUT.text, INPUT.password, INPUT.button,
11INPUT.submit, INPUT.reset, INPUT.file,
12SELECT, TEXTAREA {
13  color:#999;
14  background-color: #666;       
15}
16
17INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
18  background-color: #444;       /* whitesmoke */
19}
20
21/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
22INPUT[type="radio"], INPUT[type="checkbox"] {
23  border: none; /* <= Opera needs this */
24}
25
26INPUT.radio, INPUT.checkbox {
27  border: none; /* <= IE6 needs this */
28}
29
30
31/**
32 * Header message like upgrade or adviser mode
33 */
34.header_msgs {
35  text-align:center;
36  font-weight: bold;
37  color:#333;
38  background-color: transparent;
39  margin: 1px;
40  padding: 1px;
41}
42
43/**
44 * Header notes box in public/administration
45 */
46.header_notes {
47  border: 1px solid #666; 
48  text-align: center;
49  background-image: url(icon/note.png);
50  background-repeat: no-repeat;
51  background-position: top left;
52  font-weight: bold;
53  margin: 14px;
54  padding: 5px 00px 0px 0px;
55}
56
57LEGEND {
58  font-weight: bold;
59  letter-spacing: 1px;
60  padding: 0 10px;
61}
Note: See TracBrowser for help on using the repository browser.