source: trunk/template/yoga/picture.css @ 1677

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

feature 603: rating buttons presented with stars (full Javascript
on compatible browsers, otherwise default presentation)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/* $Id: picture.css 1657 2006-12-15 04:57:45Z rvelices $ */
2#imageHeaderBar {
3  padding-top: 2px;
4  padding-bottom: 2px;
5  margin-top: 4px;
6  overflow: hidden;
7  width: 100%;
8}
9
10#imageHeaderBar .browsePath {
11  float: left;
12  margin-left: 10px;
13}
14
15#imageHeaderBar .imageNumber {
16  float: right;
17  margin-right: 10px;
18}
19
20#imageHeaderBar H2 {
21  text-align: center;
22  padding: 0;
23  clear: both;
24}
25
26#imageToolBar {
27  text-align: center;
28  position: relative;
29  clear: both;
30  margin-bottom: 4px;
31  padding: 0;
32}
33
34#imageToolBar {
35    height: 28px;
36}
37#imageToolBar A, #imageToolBar IMG {
38    display: block;
39    border: none;
40    margin: 0; padding: 0;
41}
42#imageToolBar A { width: 48px; }
43#imageToolBar IMG { margin: 2px auto; }
44#imageToolBar .randomButtons A { float: left; }
45#imageToolBar .navButtons    A { float: right; }
46
47#theImage {
48    clear: left;
49}
50
51#theImage>IMG {
52    display: block;
53    margin: 0 auto;
54}
55
56#theImage IMG {
57  border-width: 3px;
58  border-style: solid;
59}
60
61.navThumb {
62    margin-top: 2px;
63}
64#thumbPrev {
65    float: left;
66}
67
68#thumbNext {
69    float: right;
70}
71
72#linkPrev {
73    margin-right: 10px;
74    margin-left: 5px;
75}
76
77#linkNext {
78    margin-right: 5px;
79    margin-left: 10px;
80}
81
82TABLE.infoTable .value {
83    text-align: left;
84}
85
86TABLE.infoTable .label {
87    font-weight: bold;
88    text-align: right;
89    padding-right: 0.5em;
90}
91
92TABLE.infoTable TD.value UL {
93  margin: 0;
94  padding: 0 0 0 1.5em;
95  list-style-type: square;
96}
97
98.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty  {
99  padding:0;
100  border:0;
101}
102
103.rateButton, .rateButtonStarFull, .rateButtonStarEmpty {
104  cursor: pointer;
105}
106
107.rateButtonSelected {
108  font-weight:bold;
109  font-size:120%;
110}
111
112.rateButtonStarFull {
113  background: url('icon/star_f.gif') no-repeat center;
114  width: 16px;
115}
116
117.rateButtonStarEmpty {
118  background: url('icon/star_e.gif') no-repeat center;
119  width: 16px;
120}
121
122#comments {
123  text-align: left;
124}
125
126#comments .comment {
127  margin: 1em 0;
128}
129
130#comments H2 {
131  margin: 0.5em 0;
132}
133
134#comments P {
135  margin: 0 0.5em 0 1em;
136}
137
138#comments .author {
139  font-weight: bold;
140}
141
142#thePicturePage #comments BLOCKQUOTE {
143  margin: 0.5em 1em 1em 4em;
144}
145
146#comments P.userCommentDelete {
147  float: right;
148  margin: 0 0.5em 0 0;
149}
Note: See TracBrowser for help on using the repository browser.