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

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 2.5 KB
Line 
1/* $Id: /piwigo/trunk/template/yoga/default-colors.css 6470 2008-10-01T10:04:23.412025Z rvelices  $ */
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 !important;        /* Konqueror doesn't accept transparent here */
47}
48
49.errors { /* Errors display */
50        color: red;
51        background-color: #ffe1e1;
52        font-weight: bold;
53        margin: 5px;
54        border: 1px solid red;
55        background-image: url(icon/admin/errors.png);
56        background-repeat: no-repeat;
57        background-position: top right;
58        padding: 10px 50px 10px 10px;
59}
60
61/**
62 * Informations box in administration
63 */
64.infos {
65        color: #002000;
66        background-color: #98fb98; /* palegreen */
67        background-image: url(icon/admin/infos.png);
68        background-repeat: no-repeat;
69        background-position: top right;
70        margin: 5px;
71        padding: 10px 50px 10px 10px;
72}
73
74/**
75 * Header message like upgrade or adviser mode
76 */
77.header_msgs {
78        text-align:center;
79        font-weight: bold;
80        color:#696969;  /* dimgray */
81        background-color: #d3d3d3;
82        margin: 1px;
83        padding: 1px;
84}
85
86/**
87 * Header notes box in public/administration
88 */
89.header_notes {
90        border: 1px solid #aaaaaa; /* border color and style */
91        text-align: center;
92        background-image: url(icon/note.png);
93        background-repeat: no-repeat;
94        background-position: top left;
95        font-weight: bold;
96        margin: 14px;
97        padding: 5px 00px 0px 0px;
98}
99
100LEGEND {
101        font-style: italic;
102}
103
104/*calendar*/
105SPAN.calItem, SPAN.calItemEmpty, 
106TD.calDayCellEmpty, TD.calDayCellFull {
107        border: 1px solid gray;
108}
109
110
Note: See TracBrowser for help on using the repository browser.