source: trunk/template/yoga/default-colors.css @ 1177

Last change on this file since 1177 was 970, checked in by chrisaga, 19 years ago

bug fix : errors.png and infos.png path was incorrect in default-colors.css

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
RevLine 
[960]1/* $Id: default-colors.css 970 2005-12-03 22:19:52Z chrisaga $ */
[859]2
[960]3/* others */
[859]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;
[960]26        background-color: #d3d3d3;      /* lightgrey */
[859]27}
28
[963]29.errors { /* Errors display */
[859]30  color: red;
31  background-color: #ffe1e1;
32  font-weight: bold;
33  text-align: left;
34  margin: 5px;
35  border: 1px solid red;
[970]36  background-image: url(icon/admin/errors.png);
[859]37  background-repeat: no-repeat;
38  background-position: top right;
39  padding: 10px 50px 10px 10px;
40}
41
[963]42.errors ul li
[859]43{
44  font-weight: normal;
45}
46
47/**
48 * Informations box in administration
49 */
[963]50.infos {
[859]51  text-align: left;
52  background-color: palegreen;
[970]53  background-image: url(icon/admin/infos.png);
[859]54  background-repeat: no-repeat;
55  background-position: top right;
56  color: darkgreen;
57  font-weight: bold;
58  margin: 5px;
59  padding: 10px 50px 10px 10px;
60}
61
62LEGEND {
63  font-style: italic;
64}
Note: See TracBrowser for help on using the repository browser.