blob: 9f7e761a1b6508dc6fb693a790691a2c5f97e98b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Standard implementation of the button theme
* These files contain styles that apply to all browsers
*/
@import "button-standard.scss";
@import "button-primary-style.scss";
@import "button-small-style.scss";
@import "button-link-style.scss";
/* Browser-specific corrections to the standard implementation */
@import "button-ie.scss";
@mixin reindeer-button {
// TODO use $exclude
@include reindeer-button-standard;
@include reindeer-button-primary-style;
@include reindeer-button-small-style;
@include reindeer-button-link-style;
/* Browser-specific corrections to the standard implementation */
@include reindeer-button-ie;
}
|