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

Last change on this file since 1830 was 1830, checked in by vdigital, 17 years ago

0000645: HTML Conformity (Temporary fixed)
Description 1- tags.php/tags.tpl Need to be fixed more... see FIXME in tags.tpl
when no tags are available.

2- search.php => Remove class="bouton" : Done

0000648: CSS Conformity (1) (Partly fixed)

Description
clear/theme.css + dark/theme
54 #content UL.thumbnails SPAN.wrap2:hover Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite
60 #content UL.thumbnailCategories DIV.thumbnailCategory:hover Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite
66 #content UL.thumbnailCategories DIV.thumbnailCategory:hover A Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite

wipi/theme.css et p0w0
274 .2nmore En CSS1, il était possible d'avoir un nom de classe commençant par un chiffre (".55xx") sauf s'il s'agissait d'une dimension (".55cm"). En CSS2, de tels noms sont analysés comme étant des dimensions inconnues, pour permettre l'ajout de nouvelles unités).To make ".2nmore" a valid class, CSS2 requires the first digit to be escaped (".\32nmore")

w0p0
247 Le pseudo-élément ::after ne peut apparaitre dans le contexte css2
247 #content H2 Propriété érronée : content leader(dotted) n'est pas une valeur de content : leader(dotted)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1/* $Id: default-colors.css 1830 2007-02-16 21:28:50Z vdigital $ */
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 */
24
25/* IE <= 6 is so bad with this that you can't merge with the following rule */
26INPUT[type="text"], INPUT[type="password"], INPUT[type="button"],
27INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] {
28  color:black;
29  background-color: #d3d3d3;    /* lightgrey */
30}
31
32INPUT.text, INPUT.password, INPUT.button,
33INPUT.submit, INPUT.reset, INPUT.file,
34SELECT, TEXTAREA {
35  color:black;
36  background-color: #d3d3d3;    /* lightgrey */
37}
38
39INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
40  background-color: #f5f5f5;    /* whitesmoke */
41}
42
43/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
44INPUT[type="radio"], INPUT[type="checkbox"] {
45  border: none; /* <= Opera needs this */
46}
47
48INPUT.radio, INPUT.checkbox {
49  border: none; /* <= IE6 needs this */
50}
51
52/* rate buttons displayed like links */
53INPUT.rateButton, INPUT.rateButtonSelected, INPUT.rateButtonStarFull, INPUT.rateButtonStarEmpty {
54  color:inherit;
55  background-color:transparent; /* Konqueror doesn't accept transparent here */
56}
57
58.errors { /* Errors display */
59  color: red;
60  background-color: #ffe1e1;
61  font-weight: bold;
62  text-align: left;
63  margin: 5px;
64  border: 1px solid red;
65  background-image: url(icon/admin/errors.png);
66  background-repeat: no-repeat;
67  background-position: top right;
68  padding: 10px 50px 10px 10px;
69}
70
71.errors UL LI
72{
73  font-weight: normal;
74}
75
76/**
77 * Informations box in administration
78 */
79.infos {
80  text-align: left;
81  background-color: #98fb98; /* palegreen */
82  background-image: url(icon/admin/infos.png);
83  background-repeat: no-repeat;
84  background-position: top right;
85  color: #006400; /* darkgreen */
86  font-weight: bold;
87  margin: 5px;
88  padding: 10px 50px 10px 10px;
89}
90
91/**
92 * Header message like upgrade or adviser mode
93 */
94.header_msgs {
95  text-align:center;
96  font-weight: bold;
97  color:#696969;        /* dimgray */
98  background-color: #d3d3d3;
99  margin: 1px;
100  padding: 1px;
101}
102
103/**
104 * Header notes box in public/administration
105 */
106.header_notes {
107  border: 1px solid #aaaaaa; /* border color and style */
108  text-align: center;
109  background-image: url(icon/note.png);
110  background-repeat: no-repeat;
111  background-position: top left;
112  font-weight: bold;
113  margin: 14px;
114  padding: 5px 00px 0px 0px;
115}
116
117LEGEND {
118  font-style: italic;
119}
Note: See TracBrowser for help on using the repository browser.