Add partial implementation of tabs and tab groups

This commit is contained in:
gconsidine
2017-05-25 15:08:59 -04:00
parent a322fe97f6
commit 15759b65aa
17 changed files with 166 additions and 31 deletions

View File

@@ -41,22 +41,26 @@
}
}
.at-mixin-ButtonHollow (@color, @hover: '@{color}--hover') {
.at-mixin-ButtonHollow (@color, @accent) {
background-color: @at-white;
color: @@color;
border-color: @@color;
&:hover, &:focus {
color: @@hover;
border-color: @@hover;
background-color: @at-white;
&:hover, &:active {
color: @@color;
background-color: @at-white--hover;
box-shadow: none;
}
&:focus {
color: @at-white;
background-color: @@accent;
border-color: @@accent;
cursor: default;
}
&[disabled] {
background-color: fade(@@color, 30%);
border-color: fade(@@color, 30%);
color: @at-white;
opacity: 0.65;
}
}