source: trunk/template/yoga/theme/dark/theme.css @ 1677

Last change on this file since 1677 was 1677, checked in by rub, 17 years ago

Feature Issue ID 0000601: Filter all public pages with only recent elements

It's a finalized version.
Obsolete code of draft are removed.

You can filter categories and images with recent date period on your screen selection.
In the future, filter could be easy done on other type data (plugin?)

You can flat categories and sub-categories with a recent date period of your choice.

Next, perhaps, a panel to choice recent date for the 2 features.

On draft, there have problem with MySql 5, be careful!

Css problem not resolved:

  • Menu "Categories" is bad centered
  • Icon on dark too on the top
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/* $Id: theme.css 1677 2006-12-21 21:38:20Z rub $ */
2
3/* text color */
4BODY, H1, H3, DT,
5INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
6  color:#e0e0e0;
7}
8
9H2, #menubar DT, .throw {
10  color: #fff48e;
11}
12
13#content .navigationBar {
14  color: #aaaaaa;
15}
16#content .pageNumberSelected {
17  color: #000000;
18}
19
20/* backgrounds */
21BODY {
22  background-color: #000000;
23}
24
25H3, #the_page, #imageHeaderBar, #imageToolBar A:hover, .row1  {
26  background-color: #3f3f3f;
27}
28
29#menubar DL, #content, #imageToolBar, .header_notes {
30  background-color: #5f5f5f;
31}
32
33H2, #menubar DT, .throw  {
34  background-image: url(images/tableh1_bg.png);
35}
36
37#imageHeaderBar H2 {
38  background-image: none;
39  background-color: transparent;
40  border: none;
41}
42
43#imageHeaderBar {
44  background-image: url(images/tableh2_bg.png);
45  background-repeat: repeat-x;
46  background-position: center;
47}
48
49/* borders */
50#menubar DL, #content,
51#comments DIV.comment BLOCKQUOTE {
52  border: 1px solid #000000;
53}
54
55#imageHeaderBar {
56  border-top: 1px solid #000000;
57}
58H2, #menubar DT, #imageToolBar {
59  border-bottom: 1px solid #000000;
60}
61
62#theImage IMG {
63  border-color: #000000;
64}
65
66#content UL.thumbnail IMG {
67  border: 1px solid #a0a0a0;
68}
69
70FIELDSET, INPUT, SELECT, TEXTAREA,
71#content DIV.comment  A.illustration IMG, #infos,
72#content DIV.thumbnailCategory {
73  border: 1px solid gray;
74}
75
76#comments DIV.comment BLOCKQUOTE {
77  border-left: 2px solid #696969;
78}
79
80#content UL.thumbnails SPAN.wrap2 {
81  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
82  -moz-border-radius: 4px;      /* round corners with Geko */
83  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
84}
85#content UL.thumbnails SPAN.wrap2:hover {
86  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
87}
88
89/* links */
90A, INPUT.rateButton {
91  color: #FFFFFF;
92}
93
94A:hover {
95  color: #FFF48E;
96}
97
98#imageToolBar A, #imageToolBar A:hover {
99  border-bottom: none;
100}
101
102A.navThumb, A.navThumb:hover {
103  border-bottom: none;
104}
105
106/* others */
107.pleaseNote {
108  background: #9c9c9c;
109  color: #ffff99;
110  padding: 1ex;
111  font-weight: bold;
112}
113#the_page {
114  border: 1px solid #e0e0e0;
115  padding-top: 5px;
116  padding-bottom:30px;
117  text-align:center;
118  display:block;
119}
120
121/*calendar elements*/
122SPAN.calItemEmpty { color: silver; }
123
124SPAN.calItem, SPAN.calItemEmpty
125{
126  border: 1px solid gray;
127}
128
129/* nice looking month calendar*/
130TD.calDayCellEmpty, TD.calDayCellFull { border: 1px solid gray;}
131
132TD.calDayCellEmpty { color: silver; }
133
134.calBackDate { color: #000; }
135.calForeDate { color: #fff; }
Note: See TracBrowser for help on using the repository browser.