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