blob: b1e20b0c0d99d576b562819650acb4b2f5b461f8 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
.i-button {
cursor: pointer;
font-size: 13px;
white-space: nowrap;
margin: 0px;
}
.i-checkbox input {
vertical-align: middle;
}
.i-button img, .i-checkbox img {
display:inline;
vertical-align: middle;
margin-right: 3px;
}
.i-button span, .i-checkbox label {
vertical-align: middle;
}
.i-button-link {
border: none;
text-align: left;
background: none;
padding: 0;
}
.i-sa .i-button-link:focus {
outline-offset: -3px;
}
.i-button-link span {
text-decoration: underline;
}
/* fixes streched buttons in IE6 */
* html .i-button {
width: 1px;
overflow: visible;
padding-left: 10px;
padding-right: 10px;
}
/* fixes streched buttons in IE7 */
*+html .i-button {
overflow: visible;
padding-left: 10px;
padding-right: 10px;
}
/* Error indicator on checkbox fix for IE6 */
* html .i-checkbox * { display: block; float: left;}
* html .i-checkbox .i-errorindicator {padding-right:4px;}
/* Error indicator on checkbox fix for IE7 */
*+ html .i-checkbox * { display: block; float: left;}
*+ html .i-checkbox .i-errorindicator {padding-right:7px;}
/* Error indicator on button fix for IE7 */
*+ html button .i-errorindicator { display:inline; padding-right:5px; }
/* Error indicator on button fix for IE6 */
* html button .i-errorindicator { display:inline; padding-right:5px;}
/* Disabled by default
.i-checkbox-error {
background:transparent;
background-color: #FFE0E0;
}
*/
/* Disabled by default
.i-checkbox-required {
background:transparent;
background-color: #FFE0E0;
}
*/
|