source: tags/release-1_6_0RC2/template/yoga/default-colors.css @ 20376

Last change on this file since 20376 was 1262, checked in by chrisaga, 18 years ago
  • merge trunk r1260:1261 into branch 1.6 (minor improvements and fixes in template)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1/* $Id: default-colors.css 1262 2006-04-22 20:02:12Z chrisaga $ */
2
3/* others */
4.pleaseNote {
5    background: #9c9c9c;
6    color: #ffff99;
7    padding: 1ex;
8    font-weight: bold;
9}
10
11#imageToolBar * {
12    background: inherit;
13}
14
15/* So that non-links are slightly greyed out */
16#content .navigationBar {
17    color: #696969;
18}
19#content .pageNumberSelected {
20    color: #000000;
21}
22
23/* Tables & forms */
24INPUT, SELECT, TEXTAREA {
25        color:black;
26}
27INPUT, SELECT, TEXTAREA, FORM .nofocus {
28        background-color: #d3d3d3;      /* lightgrey */
29}
30FORM .focus {
31  background-color: #f5f5f5;            /* whitesmoke */
32}
33INPUT[type="radio"] {   /* for Opera */
34  border: none;
35  background-color: transparent;
36}
37
38.errors { /* Errors display */
39  color: red;
40  background-color: #ffe1e1;
41  font-weight: bold;
42  text-align: left;
43  margin: 5px;
44  border: 1px solid red;
45  background-image: url(icon/admin/errors.png);
46  background-repeat: no-repeat;
47  background-position: top right;
48  padding: 10px 50px 10px 10px;
49}
50
51.errors UL LI
52{
53  font-weight: normal;
54}
55
56/**
57 * Informations box in administration
58 */
59.infos {
60  text-align: left;
61  background-color: palegreen;
62  background-image: url(icon/admin/infos.png);
63  background-repeat: no-repeat;
64  background-position: top right;
65  color: darkgreen;
66  font-weight: bold;
67  margin: 5px;
68  padding: 10px 50px 10px 10px;
69}
70
71LEGEND {
72  font-style: italic;
73}
Note: See TracBrowser for help on using the repository browser.