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

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

compatibility with bb code bar

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