blob: 8b9252cf680e3d2cd2a02d6452b28bf0090a1b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* These styles get catenated together on build */
@import "tabsheet-normal-style.scss";
@import "tabsheet-scroller.scss";
@import "tabsheet-borderless-style.scss";
@import "tabsheet-minimal-style.scss";
@import "tabsheet-small-style.scss";
@import "tabsheet-selected-closable-style.scss";
@import "tabsheet-hover-closable-style.scss";
@mixin reindeer-tabsheet {
@include reindeer-tabsheet-normal-style;
@include reindeer-tabsheet-scroller;
@include reindeer-tabsheet-borderless-style;
@include reindeer-tabsheet-minimal-style;
@include reindeer-tabsheet-small-style;
@include reindeer-tabsheet-selected-closable-style;
@include reindeer-tabsheet-hover-closable-style;
}
|