source: trunk/template/yoga/default-colors.css @ 2299

Last change on this file since 2299 was 2292, checked in by rvelices, 16 years ago
  • can set privacy level for added elements during site sync
  • removed some unused css and simplified a bit dark theme (more consistent with the orhers)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
RevLine 
[960]1/* $Id: default-colors.css 2292 2008-03-26 00:55:19Z rvelices $ */
[1845]2
[960]3/* others */
[859]4
5#imageToolBar * {
[2292]6        background: inherit;
[859]7}
8
9/* So that non-links are slightly greyed out */
[2101]10#content .navigationBar, SPAN.calItemEmpty, TD.calDayCellEmpty {
11        color: #b0b0b0;
[859]12}
13
14/* Tables & forms */
[1491]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 */
[1184]21}
[1491]22
23INPUT.text, INPUT.password, INPUT.button,
24INPUT.submit, INPUT.reset, INPUT.file,
25SELECT, TEXTAREA {
26  color:black;
27  background-color: #d3d3d3;    /* lightgrey */
[859]28}
[1515]29
[1491]30INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
[1515]31  background-color: #f5f5f5;    /* whitesmoke */
[1184]32}
[859]33
[1515]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 */
[1657]44INPUT.rateButton, INPUT.rateButtonSelected, INPUT.rateButtonStarFull, INPUT.rateButtonStarEmpty {
[1515]45  color:inherit;
46  background-color:transparent; /* Konqueror doesn't accept transparent here */
47}
48
[963]49.errors { /* Errors display */
[859]50  color: red;
51  background-color: #ffe1e1;
52  font-weight: bold;
53  text-align: left;
54  margin: 5px;
55  border: 1px solid red;
[970]56  background-image: url(icon/admin/errors.png);
[859]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 */
[963]65.infos {
[859]66  text-align: left;
[2101]67  color: #002000;
[1830]68  background-color: #98fb98; /* palegreen */
[970]69  background-image: url(icon/admin/infos.png);
[859]70  background-repeat: no-repeat;
71  background-position: top right;
72  margin: 5px;
73  padding: 10px 50px 10px 10px;
74}
75
[1414]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;
[1418]84  margin: 1px;
85  padding: 1px;
[1414]86}
87
[1677]88/**
89 * Header notes box in public/administration
90 */
91.header_notes {
92  border: 1px solid #aaaaaa; /* border color and style */
93  text-align: center;
94  background-image: url(icon/note.png);
95  background-repeat: no-repeat;
96  background-position: top left;
97  font-weight: bold;
98  margin: 14px;
99  padding: 5px 00px 0px 0px;
100}
101
[859]102LEGEND {
103  font-style: italic;
104}
[2101]105
106/*calendar*/
107SPAN.calItem, SPAN.calItemEmpty, 
108TD.calDayCellEmpty, TD.calDayCellFull {
109        border: 1px solid gray;
110}
111
112
Note: See TracBrowser for help on using the repository browser.