Skip to content

Commit

Permalink
fix(tabs): move border to top for windows positioned bottom tabs
Browse files Browse the repository at this point in the history
fixes #6526
  • Loading branch information
brandyscarney committed May 13, 2016
1 parent 77c1676 commit af2085e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion ionic/components/tabs/tabs.wp.scss
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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
// --------------------------------------------------
Expand Down

0 comments on commit af2085e

Please sign in to comment.