fix(tabs): move border to top for windows positioned bottom tabs

fixes #6526
This commit is contained in:
Brandy Carney
2016-05-13 18:37:50 -04:00
parent 77c167649f
commit af2085ed3d

View File

@ -35,7 +35,7 @@ tabbar {
opacity: .7;
&[aria-selected=true] {
border-bottom: 2px solid $tab-button-wp-active-color;
border-bottom-color: $tab-button-wp-active-color;
color: $tab-button-wp-active-color;
opacity: 1;
}
@ -77,6 +77,17 @@ tabbar {
padding: 6px 10px;
}
[tabbarPlacement=bottom] .tab-button {
border-top: 2px solid transparent;
border-bottom-width: 0;
&[aria-selected=true] {
border-top-color: $tab-button-wp-active-color;
}
}
// Windows Tabbar Color Mixin
// --------------------------------------------------