source: branches/branch-1_6/template/yoga/default-colors.css @ 1419

Last change on this file since 1419 was 1419, checked in by rub, 18 years ago

Issue ID 0000375:

o Line too long
o Use paragraph

Merge BSF r1417:1418 into branch-1_6

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: default-colors.css 1419 2006-06-29 22:19:16Z rub $ */
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
71/**
72 * Header message like upgrade or adviser mode
73 */
74.header_msgs {
75  text-align:center;
76  font-weight: bold;
77  color:#696969;        /* dimgray */
78  background-color: #d3d3d3;
79  margin: 1px;
80  padding: 1px;
81}
82
83LEGEND {
84  font-style: italic;
85}
Note: See TracBrowser for help on using the repository browser.