Projet

Général

Profil

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

root / htmltest / sites / all / modules / fivestar / css / fivestar.css @ 3cb08e71

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

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

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

    
94
div.fivestar-widget div.on a {
95
  background-position: 0 -16px; /* RTL */
96
}
97
div.fivestar-widget div.hover a, div.rating div a:hover {
98
  background-position: 0 -32px; /* RTL */
99
}
100
form.fivestar-widget div.description {
101
  margin-bottom: 0;
102
}
103

    
104
html.js .fivestar-submit {
105
  display: none;
106
}
107

    
108
.fivestar-combo-stars .form-type-fivestar .form-item {
109
  float: left;
110
}