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

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

remove all svn:mergeinfo properties

  • Property svn:eol-style set to LF
File size: 1.2 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  background: transparent url(icon/note.png) no-repeat right top;
49  font-weight: bold;
50  margin: 14px 24px 14px 14px;
51  padding: 5px 0 0 0;
52  top: 90px; 
53  position: absolute;
54  text-align: right;
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.