source: trunk/template/yoga/theme/clear/theme.css @ 1339

Last change on this file since 1339 was 1339, checked in by chrisaga, 18 years ago

fix bug 400 : <td nowrap> dans l'historique, and improve history tables, plus some code formating

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1/* $Id: theme.css 1339 2006-06-04 10:13:38Z chrisaga $ */
2
3/* text color */
4BODY, H1, H2, H3, DT {
5  color:#696969;        /* dimgray */
6}
7
8/* backgrounds */
9BODY, H3, .throw {
10  background-color: #ffffff;    /* white */
11}
12
13H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 {
14  background-color: #d3d3d3;
15}
16
17#menubar DL, #content, #imageToolBar {
18  background-color: #eeeeee;
19}
20
21/* borders */
22#menubar DL, #content, #imageToolBar,
23#comments DIV.comment BLOCKQUOTE {
24  border: 1px solid #d3d3d3;
25}
26
27#theImage IMG {
28  border-color: #d3d3d3;
29}
30
31#content UL.thumbnail IMG {
32    border: 1px solid #a0a0a0;
33}
34
35FIELDSET, INPUT, SELECT, TEXTAREA,
36#content DIV.comment  A.illustration IMG, #infos,
37#content DIV.thumbnailCategory {
38  border: 1px solid gray;
39}
40
41#comments DIV.comment BLOCKQUOTE {
42  border-left: 2px solid #696969;
43  background-color: #eee;
44}
45
46#content UL.thumbnails SPAN.wrap2 {
47  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
48  -moz-border-radius: 4px;      /* round corners with Geko */
49  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
50}
51#content UL.thumbnails SPAN.wrap2:hover {
52  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
53}
54
55/* links */
56A, .rateButton {
57    color: #005e89;
58    background: transparent;
59}
60
61A:hover {
62    color: #858460;
63}
64
65#imageToolBar A, #imageToolBar A:hover {
66    border-bottom: none;
67}
68
69A.navThumb, A.navThumb:hover {
70    border-bottom: none;
71}
72
73/* others */
74.pleaseNote {
75    background: #9c9c9c;
76    color: #ffff99;
77    padding: 1ex;
78    font-weight: bold;
79}
80
81/*calendar elements*/
82SPAN.calItemEmpty { color: silver; }
83
84SPAN.calItem, SPAN.calItemEmpty
85{
86  border: 1px solid silver;
87}
88
89/* nice looking month calendar*/
90TD.calDayCellEmpty, TD.calDayCellFull { border: 1px solid #7E7262;}
91
92TD.calDayCellEmpty { color: silver; }
93
94.calBackDate { color: #000; }
95.calForeDate { color: #fff; }
Note: See TracBrowser for help on using the repository browser.