Projet

Général

Profil

Paste
Télécharger (2,35 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / fivestar / css / fivestar.css @ d50a36e0

1
/* Plain HTML Version */
2
form.fivestar-widget {
3
  clear: both;
4
  display: block;
5
}
6
form.fivestar-widget select,
7
form.fivestar-widget input {
8
  margin: 0;
9
}
10

    
11
/* Combo Static and Rate Widget */
12
.fivestar-combo-stars .fivestar-static-form-item {
13
  float: left; /* RTL */
14
  margin-right: 40px; /* RTL */
15
  margin-left: 40px; /* RTL */
16
}
17
.fivestar-combo-stars .fivestar-static-item {
18
  float: left; /* RTL */
19
  margin-right: 40px; /* RTL */
20
}
21

    
22
.fivestar-combo-stars .fivestar-form-item {
23
  float: left; /* RTL */
24
}
25

    
26
/* Fivestar form items */
27
.fivestar-static-form-item .form-item,
28
.fivestar-form-item .form-item {
29
  margin: 0;
30
}
31

    
32
/* Static View-only Star Version */
33
div.fivestar-widget-static {
34
  display: block;
35
}
36

    
37
div.fivestar-widget-static br {
38
  clear: left; /* RTL */
39
}
40

    
41
div.fivestar-widget-static .star {
42
  float: left; /* RTL */
43
  width: 17px;
44
  height: 15px;
45
  overflow: hidden;
46
  text-indent: -999em;
47
  background: url(../widgets/default/star.gif) no-repeat 0 0; /* RTL */
48
}
49

    
50
div.fivestar-widget-static .star span.on {
51
  display: block;
52
  width: 100%;
53
  height: 100%;
54
  background: url(../widgets/default/star.gif) no-repeat 0 -32px; /* RTL */
55
}
56

    
57
div.fivestar-widget-static .star span.off {
58
  display: block;
59
  width: 100%;
60
  height: 100%;
61
  background: url(../widgets/default/star.gif) no-repeat 0 0; /* RTL */
62
}
63

    
64
/* Javascript Star Version */
65
div.fivestar-widget {
66
  display: block;
67
}
68

    
69
div.fivestar-widget .cancel,
70
div.fivestar-widget .star {
71
  float: left; /* RTL */
72
  width: 17px;
73
  height: 15px;
74
  overflow: hidden;
75
  text-indent: -999em;
76
}
77
div.fivestar-widget .cancel,
78
div.fivestar-widget .cancel a {
79
  background: url(../widgets/default/delete.gif) no-repeat 0 -16px; /* RTL */
80
  text-decoration: none;
81
}
82

    
83
div.fivestar-widget .star,
84
div.fivestar-widget .star a {
85
  background: url(../widgets/default/star.gif) no-repeat 0 0; /* RTL */
86
  text-decoration: none;
87
}
88

    
89
div.fivestar-widget .cancel a,
90
div.fivestar-widget .star a {
91
  display: block;
92
  width: 100%;
93
  height: 100%;
94
  background-position: 0 0; /* RTL */
95
  cursor: pointer;
96
}
97

    
98
div.fivestar-widget div.on a {
99
  background-position: 0 -16px; /* RTL */
100
}
101
div.fivestar-widget div.hover a,
102
div.rating div a:hover {
103
  background-position: 0 -32px; /* RTL */
104
}
105
form.fivestar-widget div.description {
106
  margin-bottom: 0;
107
}
108

    
109
html.js .fivestar-submit {
110
  display: none;
111
}
112

    
113
.fivestar-combo-stars .form-type-fivestar .form-item {
114
  float: left;
115
}