blob: bd6ca356271d4150bf550ab2988fdd9994cd7856 (
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
|
/* Browser-specific corrections to the standard implementation */
@import "button-ie.scss";
@mixin reindeer-nativebutton-link($name : v-nativebutton) {
.#{$name}-link .#{$name}-caption {
line-height: inherit;
font-weight: normal;
color: #1b699f;
font-size: 12px;
text-shadow: none;
}
.#{$name}-link:focus .#{$name}-caption {
outline: 1px dotted #1b699f;
}
}
@mixin reindeer-nativebutton($name : v-nativebutton) {
@include reindeer-nativebutton-link($name);
/* Browser-specific corrections to the standard implementation */
@include reindeer-button-ie($name);
}
|