File tree Expand file tree Collapse file tree 3 files changed +23
-9
lines changed Expand file tree Collapse file tree 3 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -488,7 +488,7 @@ export class Content extends Ion {
488
488
this . _scrollEle . style . paddingBottom = ( this . _paddingBottom > 0 ? this . _paddingBottom + 'px' : '' ) ;
489
489
}
490
490
491
- if ( this . _tabbarOnTop && this . _tabs ) {
491
+ if ( this . _tabbarOnTop !== null && this . _tabs ) {
492
492
if ( this . _tabbarOnTop ) {
493
493
this . _tabs . setTabbarPosition ( this . _headerHeight , - 1 ) ;
494
494
Original file line number Diff line number Diff line change 1
1
< ion-header >
2
2
3
3
< ion-navbar >
4
- < ion-title > Test </ ion-title >
4
+ < ion-title > Searchbar Toolbars </ ion-title >
5
5
</ ion-navbar >
6
6
7
7
</ ion-header >
Original file line number Diff line number Diff line change @@ -37,30 +37,44 @@ $navbar-ios-height: $toolbar-ios-height !default;
37
37
}
38
38
39
39
40
- // iOS Toolbar Background
40
+ // iOS Header Toolbar
41
41
// --------------------------------------------------
42
42
43
- .toolbar-background {
43
+ ion-header {
44
+ border : 0 ;
44
45
border-bottom-width : 1px ;
45
46
border-style : solid ;
46
47
border-color : $toolbar-ios-border-color ;
47
- background : $toolbar-ios-background ;
48
48
}
49
49
50
- & .hairlines .toolbar-background {
50
+ & .hairlines ion-header {
51
51
border-bottom-width : $hairlines-width ;
52
52
}
53
53
54
- .toolbar [position = bottom ] .toolbar-background {
54
+
55
+ // iOS Footer Toolbar
56
+ // --------------------------------------------------
57
+
58
+ ion-footer {
59
+ border : 0 ;
55
60
border-top-width : 1px ;
56
- border-bottom-width : 0 ;
61
+ border-style : solid ;
62
+ border-color : $toolbar-ios-border-color ;
57
63
}
58
64
59
- & .hairlines .toolbar [ position = bottom ] .toolbar-background {
65
+ & .hairlines ion-footer {
60
66
border-top-width : $hairlines-width ;
61
67
}
62
68
63
69
70
+ // iOS Toolbar Background
71
+ // --------------------------------------------------
72
+
73
+ .toolbar-background {
74
+ background : $toolbar-ios-background ;
75
+ }
76
+
77
+
64
78
// iOS Toolbar Content
65
79
// --------------------------------------------------
66
80
You can’t perform that action at this time.
0 commit comments