fix(toolbar): add border-top when toolbar is positioned to the bottom

fixes #5967
This commit is contained in:
Brandy Carney
2016-04-11 10:51:46 -04:00
parent cd62a4c4f6
commit 29e624254f

View File

@ -42,7 +42,7 @@ ion-navbar-section {
.toolbar-background { .toolbar-background {
border-bottom-width: 1px; border-bottom-width: 1px;
border-bottom-style: solid; border-style: solid;
border-color: $toolbar-ios-border-color; border-color: $toolbar-ios-border-color;
background: $toolbar-ios-background; background: $toolbar-ios-background;
} }
@ -51,6 +51,15 @@ ion-navbar-section {
border-bottom-width: $hairlines-width; border-bottom-width: $hairlines-width;
} }
.toolbar[position=bottom] .toolbar-background {
border-bottom-width: 0;
border-top-width: 1px;
}
&.hairlines .toolbar[position=bottom] .toolbar-background {
border-top-width: $hairlines-width;
}
// iOS Toolbar Content // iOS Toolbar Content
// -------------------------------------------------- // --------------------------------------------------