Skip to content

Commit

Permalink
fix(toolbar): add border-top when toolbar is positioned to the bottom
Browse files Browse the repository at this point in the history
fixes #5967
  • Loading branch information
brandyscarney committed Apr 11, 2016
1 parent cd62a4c commit 29e6242
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ionic/components/toolbar/toolbar.ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ion-navbar-section {

.toolbar-background {
border-bottom-width: 1px;
border-bottom-style: solid;
border-style: solid;
border-color: $toolbar-ios-border-color;
background: $toolbar-ios-background;
}
Expand All @@ -51,6 +51,15 @@ ion-navbar-section {
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
// --------------------------------------------------
Expand Down

0 comments on commit 29e6242

Please sign in to comment.