source: trunk/admin/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: 1.7 KB
Line 
1
2
3/* So that non-links are slightly greyed out */
4.content .navigationBar {
5        color: #999;
6}
7
8/* Tables & forms */
9
10INPUT.text, INPUT.password, INPUT.button,
11INPUT.submit, INPUT.reset, INPUT.file,
12SELECT, TEXTAREA {
13  color:#999;
14  background-color: #666;       
15}
16
17INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
18  background-color: #444;       /* whitesmoke */
19}
20
21/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
22INPUT[type="radio"], INPUT[type="checkbox"] {
23  border: none; /* <= Opera needs this */
24}
25
26INPUT.radio, INPUT.checkbox {
27  border: none; /* <= IE6 needs this */
28}
29
30.errors { /* Errors display */
31  color: #f33;
32  background-color: transparent;
33  font-weight: bold;
34  text-align: left;
35  margin: 5px;
36  border: 1px solid #666;
37  background-image: url(icon/errors.png);
38  background-repeat: no-repeat;
39  background-position: top right;
40  padding: 10px 50px 10px 10px;
41}
42
43/**
44 * Informations box in administration
45 */
46.infos {
47  text-align: left;
48  color: #f70;
49  background-color: transparent; 
50  background-image: url(icon/infos.png);
51  background-repeat: no-repeat;
52  background-position: top right;
53  margin: 5px;
54  padding: 10px 50px 10px 10px;
55}
56
57/**
58 * Header message like upgrade or adviser mode
59 */
60.header_msgs {
61  text-align:center;
62  font-weight: bold;
63  color:#333;
64  background-color: transparent;
65  margin: 1px;
66  padding: 1px;
67}
68
69/**
70 * Header notes box in public/administration
71 */
72.header_notes {
73  border: 1px solid #666; 
74  text-align: center;
75  background-image: url(icon/note.png);
76  background-repeat: no-repeat;
77  background-position: top left;
78  font-weight: bold;
79  margin: 14px;
80  padding: 5px 00px 0px 0px;
81}
82
83LEGEND {
84  font-style: italic;
85}
Note: See TracBrowser for help on using the repository browser.