source: trunk/themes/clear/theme.css @ 13729

Last change on this file since 13729 was 13729, checked in by Zaphod, 12 years ago

feature 2588: template modification for v2.4

-> new class .switchBox for all boxes (sortOrder, derivative, etc...)
-> new classes to help layout in switchBoxes:

  • .switchCheck for the check character
  • .switchSelected for the selected option
  • .switchUnselected for all other options

-> new menubar.tpl with empty div #menuSwitcher

  • Property svn:eol-style set to LF
File size: 1.7 KB
Line 
1
2/* text color */
3BODY, H1, H2, H3, DT,
4INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
5        color:#696969;  /* dimgray */
6}
7
8/* backgrounds */
9BODY, H3 {
10        background-color: #ffffff;      /* white */
11}
12
13H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover {
14        background-color: #d3d3d3;
15}
16
17#menubar DL, .content, #imageToolBar, .switchBox, .header_notes {
18  background-color: #eeeeee;
19}
20
21/* borders */
22#menubar DL, .content, #imageToolBar, .switchBox {
23  border: 1px solid #d3d3d3;
24}
25
26#theImage IMG {
27  border: 3px solid #d3d3d3;
28}
29
30/*I think this rule is never used*/
31.content UL.thumbnail IMG {
32    border: 1px solid #a0a0a0;
33}
34
35FIELDSET, INPUT, SELECT, TEXTAREA,
36.content .thumbnailCategory,
37.content .commentElement {
38  border: 1px solid gray;
39}
40
41.thumbnails .wrap2 {
42  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
43}
44
45.thumbnails .wrap2:hover,
46.content .thumbnailCategories .thumbnailCategory:hover,
47.content .thumbnailCategories .thumbnailCategory:hover A,
48.content .commentsList .commentElement:hover,
49.content .commentsList .commentElement:hover A {
50  background-color: #faebd7;
51  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
52  color: black;
53}
54
55/* links */
56A, INPUT.rateButton {
57        color: #005e89;
58        background: transparent;
59        border-bottom: 1px dotted #005e89;
60}
61
62A:hover, INPUT.rateButton:hover {
63    color: #808060;
64}
65
66A.pwg-state-default {
67        border: 0;
68}
69
70A.navThumb, A.navThumb:hover {
71    border-bottom: none;
72}
73
74/*calendar elements*/
75.calItem, .calItemEmpty
76{
77  border: 1px solid silver;
78}
79
80#qsearchInput { color: #005e89; }
81
82.pwg-icon {
83        background-image: url(../default/s26/outline_005e89.png);
84}
85
86A:hover .pwg-icon {
87        background-image: url(../default/s26/outline_808060.png);
88}
89
Note: See TracBrowser for help on using the repository browser.