source: extensions/floPure/default-colors.css @ 3474

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

refresh all the tpl with current yoga tpl.

maj avec le yoga de pwg 2.0.2

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