blob: 5d13a8594c4de8586997640ef4704f6613ff0c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
.TRatingList_blocks
{
border-collapse: collapse;
}
.TRatingList_blocks input, .TRatingList_blocks label
{
display: none;
}
.TRatingList_blocks td
{
width: 18px;
height: 9px;
padding: 1px;
}
.TRatingList_blocks td.rating
{
background-image: url(blocks_combined.gif);
background-repeat: no-repeat;
cursor: pointer;
background-position: 1px 0px;
}
.TRatingList_blocks td.rating_selected
{
background-position: 1px -100px;
}
.TRatingList_blocks td.rating_disabled
{
cursor: default !important;
}
|