blob: fa8014cddb4d8c6431c94e81ea73df36425b90f2 (
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
|
/* Standard implementation of the button theme
* These files contain styles that apply to all browsers
*/
@import "button-standard.css";
@import "button-primary-style.css";
@import "button-small-style.css";
@import "button-link-style.css";
/* Browser-specific corrections to the standard implementation */
@import "button-safari.css";
@import "button-firefox.css";
@import "button-opera.css";
@import "button-ie.css";
/*
.v-ff .v-button .v-errorindicator,
.v-sa .v-button .v-errorindicator {
top: 2px;
left: 16px;
}
/* Buttons with explicit size *
.v-button[style*="width"] .v-button-caption {
display: block;
}
.v-button[style*="width"] .v-icon + .v-button-caption,
.v-button[style*="width"] .v-icon + .v-errorindicator + .v-button-caption {
margin-left: 0;
}
.v-button[style*="width"] .v-icon,
.v-ie7 .v-button .v-icon {
position: absolute;
top: 4px;
}
.v-ie7 .v-button > .v-button-caption {
display: block;
margin-left: 0;
}
*/
|