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

Last change on this file since 2352 was 2352, checked in by patdenice, 16 years ago

Change all #content by .content in css files.
In tpl files, id="content" stay here for backward compatibilities.
Add some plugins triggers in index.tpl and picture.tpl.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/* $Id: theme.css 2352 2008-05-20 00:27:26Z patdenice $ */
2
3/* text color */
4BODY, H1, H2, H3, DT,
5INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
6  color:#696969;        /* dimgray */
7}
8
9/* backgrounds */
10BODY, H3, .throw {
11  background-color: #ffffff;    /* white */
12}
13
14H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 {
15  background-color: #d3d3d3;
16}
17
18#menubar DL, .content, #imageToolBar, .header_notes {
19  background-color: #eeeeee;
20}
21
22/* borders */
23#menubar DL, .content, #imageToolBar, 
24#comments DIV.comment BLOCKQUOTE {
25  border: 1px solid #d3d3d3;
26}
27
28#theImage IMG {
29  border-color: #d3d3d3;
30}
31
32.content UL.thumbnail IMG {
33    border: 1px solid #a0a0a0;
34}
35
36FIELDSET, INPUT, SELECT, TEXTAREA,
37.content DIV.comment  A.illustration IMG,
38.content DIV.thumbnailCategory {
39  border: 1px solid gray;
40}
41
42#comments DIV.comment BLOCKQUOTE {
43  border-left: 2px solid #696969;
44  background-color: #eee;
45}
46
47.content UL.thumbnails SPAN.wrap2 {
48  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
49  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
50}
51
52.content UL.thumbnails SPAN.wrap2:hover,
53.content UL.thumbnailCategories DIV.thumbnailCategory:hover,
54.content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
55  background-color: #faebd7;
56  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
57  color: black;
58}
59
60/* links */
61A, INPUT.rateButton {
62    color: #005e89;
63    background: transparent;
64}
65
66A:hover, INPUT.rateButton:hover {
67    color: #858460;
68}
69
70#imageToolBar A, #imageToolBar A:hover {
71    border-bottom: none;
72}
73
74A.navThumb, A.navThumb:hover {
75    border-bottom: none;
76}
77
78/*calendar elements*/
79SPAN.calItem, SPAN.calItemEmpty
80{
81  border: 1px solid silver;
82}
83
84.virtual_cat { background: #fff !important; }
85#mbMenu #quicksearch > p { text-align: left; }
86#qsearchInput { color: #d3d3d3; }
87#qsearchInput:focus { color: #005e89; }
88
89
90UL.tabsheet LI.normal_tab { background-color: #d3d3d3; }
91UL.tabsheet LI.selected_tab { background-color: #eeeeee; }
92
93UL.tabsheet, UL.tabsheet LI {border-color: gray;}
94UL.tabsheet LI.normal_tab:hover { border-color: black; }
Note: See TracBrowser for help on using the repository browser.