toolbar border

This commit is contained in:
Adam Bradley
2015-04-02 21:04:02 -05:00
parent e2955ff28d
commit ec70a74d0a

View File

@ -45,12 +45,12 @@ $toolbar-ios-button-background-color: transparent !default;
background: $toolbar-ios-button-background-color; background: $toolbar-ios-button-background-color;
} }
// tab-bar bottom, border top (default) // toolbar top, border bottom (default)
&:after { &:after {
position: absolute; position: absolute;
top: 0; top: auto;
right: auto; right: auto;
bottom: auto; bottom: 0;
left: 0; left: 0;
z-index: $z-index-toolbar-border; z-index: $z-index-toolbar-border;
display: block; display: block;
@ -65,10 +65,10 @@ $toolbar-ios-button-background-color: transparent !default;
content: ''; content: '';
} }
// tab-bar bottom, border top // toolbar bottom, border top
&.toolbar-top:after { &.toolbar-bottom:after {
top: auto; top: 0;
bottom: 0; bottom: auto;
} }
} }