source: branches/branch-1_6/template/yoga/default-colors.css @ 1516

Last change on this file since 1516 was 1516, checked in by chrisaga, 18 years ago

merge from trunk r1514:1515 into branch 1.6 (better fix bug 484)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: default-colors.css 1516 2006-07-29 10:02:32Z chrisaga $ */
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 */
26INPUT[type="text"], INPUT[type="password"], INPUT[type="button"],
27INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] {
28  color:black;
29  background-color: #d3d3d3;    /* lightgrey */
30}
31
32INPUT.text, INPUT.password, INPUT.button,
33INPUT.submit, INPUT.reset, INPUT.file,
34SELECT, TEXTAREA {
35  color:black;
36  background-color: #d3d3d3;    /* lightgrey */
37}
38
39INPUT: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 */
44INPUT[type="radio"], INPUT[type="checkbox"] {
45  border: none; /* <= Opera needs this */
46}
47
48INPUT.radio, INPUT.checkbox {
49  border: none; /* <= IE6 needs this */
50}
51
52/* rate buttons displayed like links */
53INPUT.rateButton, INPUT.rateButtonSelected {
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: palegreen;
82  background-image: url(icon/admin/infos.png);
83  background-repeat: no-repeat;
84  background-position: top right;
85  color: 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
103LEGEND {
104  font-style: italic;
105}
Note: See TracBrowser for help on using the repository browser.