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

Last change on this file since 2299 was 2295, checked in by rvelices, 16 years ago
  • fix display of rating stars on picture page (since smarty)
  • rating star css use a CSS sprite
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: picture.css 2295 2008-04-02 00:51:08Z 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/rating-stars.gif') no-repeat scroll; background-position:-16px center; width:16px;
114}
115
116.rateButtonStarEmpty {
117        background: url('icon/rating-stars.gif') no-repeat scroll; background-position:0 center; width:16px;
118}
119
120#comments {
121  text-align: left;
122}
123
124#comments .comment {
125  margin: 1em 0;
126}
127
128#comments P {
129  margin: 0 0.5em 0 1em;
130}
131
132#comments .author {
133  font-weight: bold;
134}
135
136#thePicturePage #comments BLOCKQUOTE {
137  margin: 0.5em 1em 1em 4em;
138}
139
140#comments P.userCommentDelete {
141  float: right;
142  margin: 0 0.5em 0 0;
143}
Note: See TracBrowser for help on using the repository browser.