source: trunk/themes/default/default-colors.css @ 5123

Last change on this file since 5123 was 5123, checked in by plg, 14 years ago

feature 1502: based on Dotclear model, P@t has reorganized the way Piwigo
manages template/theme in a simpler "theme only level" architecture. It
supports multiple level inheritance.

  • Property svn:eol-style set to LF
File size: 2.4 KB
RevLine 
[1845]1
[960]2/* others */
[859]3
4#imageToolBar * {
[2292]5        background: inherit;
[859]6}
7
8/* So that non-links are slightly greyed out */
[2352]9.content .navigationBar, SPAN.calItemEmpty, TD.calDayCellEmpty {
[2101]10        color: #b0b0b0;
[859]11}
12
13/* Tables & forms */
[1491]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"] {
[2480]18        color:black;
19        background-color: #d3d3d3;      /* lightgrey */
[1184]20}
[1491]21
22INPUT.text, INPUT.password, INPUT.button,
23INPUT.submit, INPUT.reset, INPUT.file,
24SELECT, TEXTAREA {
[2480]25        color:black;
26        background-color: #d3d3d3;      /* lightgrey */
[859]27}
[1515]28
[1491]29INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
[2480]30        background-color: #f5f5f5;      /* whitesmoke */
[1184]31}
[859]32
[1515]33/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
34INPUT[type="radio"], INPUT[type="checkbox"] {
[2480]35        border: none;   /* <= Opera needs this */
[1515]36}
37
38INPUT.radio, INPUT.checkbox {
[2480]39        border: none;   /* <= IE6 needs this */
[1515]40}
41
42/* rate buttons displayed like links */
[1657]43INPUT.rateButton, INPUT.rateButtonSelected, INPUT.rateButtonStarFull, INPUT.rateButtonStarEmpty {
[2480]44        color:inherit;
[2630]45        background-color:transparent !important;        /* Konqueror doesn't accept transparent here */
[1515]46}
47
[963]48.errors { /* Errors display */
[2480]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;
[859]58}
59
60/**
61 * Informations box in administration
62 */
[963]63.infos {
[2480]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;
[859]71}
72
[1414]73/**
74 * Header message like upgrade or adviser mode
75 */
76.header_msgs {
[2480]77        text-align:center;
78        font-weight: bold;
79        color:#696969;  /* dimgray */
80        background-color: #d3d3d3;
81        margin: 1px;
82        padding: 1px;
[1414]83}
84
[1677]85/**
86 * Header notes box in public/administration
87 */
88.header_notes {
[2480]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;
[1677]97}
98
[859]99LEGEND {
[2480]100        font-style: italic;
[859]101}
[2101]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.