source: extensions/floOs/default-colors.css @ 3334

Last change on this file since 3334 was 3334, checked in by flop25, 15 years ago

first commit

File size: 2.9 KB
Line 
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 */
17INPUT[type="text"], INPUT[type="password"], INPUT[type="button"],
18INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] {
19  color:black;
20  background-color: #d3d3d3;    /* lightgrey */
21}
22
23INPUT.text, INPUT.password, INPUT.button,
24INPUT.submit, INPUT.reset, INPUT.file,
25SELECT, TEXTAREA {
26  color:black;
27  background-color: #d3d3d3;    /* lightgrey */
28}
29
30INPUT: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 */
35INPUT[type="radio"], INPUT[type="checkbox"] {
36  border: none; /* <= Opera needs this */
37}
38
39INPUT.radio, INPUT.checkbox {
40  border: none; /* <= IE6 needs this */
41}
42
43/* rate buttons displayed like links */
44INPUT.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        float:right;
87        position: absolute;
88        top: 1px;
89        right: 1px;
90        width:20%;
91        padding-top: 5px;
92        padding-right: 0px;
93        padding-bottom: 0px;
94        padding-left: 30px;
95}
96
97/**
98 * Header notes box in public/administration
99 */
100.header_notes {
101        border: 1px solid #aaaaaa; /* border color and style */
102        text-align: center;
103        background-image: url(icon/note.png);
104        background-repeat: no-repeat;
105        background-position: top left;
106        font-weight: bold;
107        margin: 14px;
108        float:right;
109        color:#000000;
110        position: absolute;
111        top: 1px;
112        right: 1px;
113        width:20%;
114        padding-top: 5px;
115        padding-right: 0px;
116        padding-bottom: 0px;
117        padding-left: 30px;
118}
119
120LEGEND {
121  font-style: italic;
122}
123
124/*calendar*/
125SPAN.calItem, SPAN.calItemEmpty, 
126TD.calDayCellEmpty, TD.calDayCellFull {
127        border: 1px solid gray;
128}
129
130
Note: See TracBrowser for help on using the repository browser.