blob: bdeaae3de2470a0e03ca257764f1541511f8c3b8 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
|
.v-captionwrapper {
text-align: left; /* Force default alignment */
}
.v-caption {
overflow: hidden;
white-space: nowrap;
}
.v-errorindicator {
float: left;
}
.v-caption .v-icon {
float: left;
padding-right: 2px;
vertical-align: middle;
}
.v-caption .v-captiontext {
float: left;
overflow: hidden;
vertical-align: middle;
}
.v-caption .v-required-field-indicator {
float: left;
}
.v-caption-clearelem {
clear: both;
width: 0;
height: 0;
overflow: hidden;
}
/* Fix IE6 "double-float-margin-bug" */
.v-ie6 .v-errorindicator,
.v-ie6 .v-icon,
.v-ie6 .v-captiontext,
.v-ie6 .v-required-field-indicator {
display: inline;
}
.v-ie9 .v-gridlayout-margin>div>div>.v-caption,
.v-ie9 .v-verticallayout>div>div>.v-caption,
.v-ie9 .v-horizontallayout>div>div>.v-caption {
/* Fix possible sub pixel rounding errors that cause error indicators to drop */
margin-right:-0.5px;
}
|