1 | |
---|
2 | /* text color */ |
---|
3 | BODY, H1, H2, H3, DT, |
---|
4 | INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { |
---|
5 | color:#696969; /* dimgray */ |
---|
6 | } |
---|
7 | |
---|
8 | /* backgrounds */ |
---|
9 | BODY, H3 { |
---|
10 | background-color: #ffffff; /* white */ |
---|
11 | } |
---|
12 | |
---|
13 | H2, #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 | |
---|
35 | FIELDSET, 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 */ |
---|
56 | A, INPUT.rateButton { |
---|
57 | color: #005e89; |
---|
58 | background: transparent; |
---|
59 | border-bottom: 1px dotted #005e89; |
---|
60 | } |
---|
61 | |
---|
62 | A:hover, INPUT.rateButton:hover { |
---|
63 | color: #808060; |
---|
64 | } |
---|
65 | |
---|
66 | A.pwg-state-default { |
---|
67 | border: 0; |
---|
68 | } |
---|
69 | |
---|
70 | A.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 | |
---|
86 | A:hover .pwg-icon { |
---|
87 | background-image: url(../default/s26/outline_808060.png); |
---|
88 | } |
---|
89 | |
---|