fix(tabs): md reduce opacity for inactive buttons

fixes #615
This commit is contained in:
Brandy Carney
2015-11-21 18:36:25 -05:00
parent a13bda6caa
commit 92b3dfdfcc

View File

@ -14,10 +14,15 @@ $tabbar-md-item-height: 4.8rem !default;
min-height: $tabbar-md-item-height; min-height: $tabbar-md-item-height;
font-size: $tabbar-md-item-font-size; font-size: $tabbar-md-item-font-size;
font-weight: $tabbar-md-item-font-weight; font-weight: $tabbar-md-item-font-weight;
opacity: 0.7;
box-shadow: none; box-shadow: none;
border-radius: 0; border-radius: 0;
border-bottom: 2px solid transparent; border-bottom: 2px solid transparent;
&[aria-selected=true] {
opacity: 1.0;
}
} }
.tab-button-text { .tab-button-text {