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