Upon updating to the latest version of ionic (from 1.0.0 to 1.1.0) I’ve got some problems with ion-tabs: having put them on top via $ionicConfigProvider.tabs.position('top');
, effect is that the nav-bar is put under the tab-bar, as if it was a sub-header.
After some research, it looks like commenting out these lines in .css solves the problem:
.nav-bar-tabs-top.hide ~ .view-container .tabs-top .tabs {
top: 0;
}
.pane[hide-nav-bar="true"] .has-tabs-top {
top: 49px;
}
Has anyone had a similar problem, and in case, what are those css lines added for? (Just asking to know if I’ll break something in the near future for commenting them…)