1
|
.poll .bar {
|
2
|
height: 1em;
|
3
|
margin: 1px 0;
|
4
|
background-color: #ddd;
|
5
|
}
|
6
|
.poll .bar .foreground {
|
7
|
background-color: #000;
|
8
|
height: 1em;
|
9
|
float: left;
|
10
|
}
|
11
|
.poll .links {
|
12
|
text-align: center;
|
13
|
}
|
14
|
.poll .percent {
|
15
|
text-align: right;
|
16
|
}
|
17
|
.poll .total {
|
18
|
text-align: center;
|
19
|
}
|
20
|
.poll .vote-form {
|
21
|
text-align: center;
|
22
|
}
|
23
|
.poll .vote-form .choices {
|
24
|
text-align: left;
|
25
|
margin: 0 auto;
|
26
|
display: table;
|
27
|
}
|
28
|
.node-form .poll-form fieldset {
|
29
|
display: block;
|
30
|
}
|
31
|
.pollfield-form fieldset legend + .form-item{
|
32
|
width:70%;
|
33
|
}
|
34
|
.pollfield-form fieldset .form-item{
|
35
|
float:left;
|
36
|
width:25%;
|
37
|
}
|
38
|
|
39
|
#pollfield{
|
40
|
max-width:800px;
|
41
|
display:table;
|
42
|
}
|
43
|
.pollfield-row{
|
44
|
margin:10px 0;
|
45
|
padding:0;
|
46
|
overflow:visible;
|
47
|
display:table-row;
|
48
|
width:100%;
|
49
|
}
|
50
|
.pollfield-row .text{
|
51
|
display:table-cell;
|
52
|
vertical-align:middle;
|
53
|
padding:0.2em 3px 0.2em 0;
|
54
|
min-width:4em;
|
55
|
overflow:visible;
|
56
|
text-align:right;
|
57
|
}
|
58
|
.barcell{
|
59
|
display:table-cell;
|
60
|
width:240px;
|
61
|
vertical-align:middle;
|
62
|
}
|
63
|
.barcell .bar{
|
64
|
height:1em;
|
65
|
border:#F0F0F0 solid 1px;
|
66
|
background:#FFFFFF url(images/bg-bar-white.png) repeat-x scroll 0 0;
|
67
|
width:240px;
|
68
|
}
|
69
|
.barcell .bar .pollfield-foreground{
|
70
|
background:#71A7CC url(images/bg-bar.png) repeat-x scroll 0 100%;
|
71
|
height:1em;
|
72
|
}
|
73
|
.pollfield-percent{
|
74
|
display:table-cell;
|
75
|
vertical-align:middle;
|
76
|
padding:0.2em;
|
77
|
min-width:20em;
|
78
|
overflow:visible;
|
79
|
}
|
80
|
|
81
|
.pollfield-chosen{
|
82
|
font-weight:bold;
|
83
|
font-style:italic;
|
84
|
}
|