From 29e624254f95c6abbf574f3923f88fe02cc862e2 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 11 Apr 2016 10:51:46 -0400 Subject: [PATCH] fix(toolbar): add border-top when toolbar is positioned to the bottom fixes #5967 --- ionic/components/toolbar/toolbar.ios.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ionic/components/toolbar/toolbar.ios.scss b/ionic/components/toolbar/toolbar.ios.scss index 57351f42b2..392b960a0b 100644 --- a/ionic/components/toolbar/toolbar.ios.scss +++ b/ionic/components/toolbar/toolbar.ios.scss @@ -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; } @@ -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 // --------------------------------------------------