fix(nav): start zIndex at 10

This commit is contained in:
Adam Bradley
2015-11-02 15:52:06 -06:00
parent 0840bdf0d7
commit 4c3b83fde5
3 changed files with 2 additions and 19 deletions

View File

@@ -30,8 +30,8 @@
min-height: 30px;
font-weight: 500;
width: 100%;
z-index: 100;
z-index: 1000;
&.sticky {
position: -webkit-sticky;
position: sticky;

View File

@@ -579,7 +579,7 @@ export class NavController extends Ion {
_setZIndex(enteringInstance, leavingInstance, direction) {
if (!leavingInstance) {
enteringInstance._zIndex = 0;
enteringInstance._zIndex = 10;
} else if (direction === 'back') {
// moving back

View File

@@ -1,20 +1,3 @@
// import {
// ddescribe,
// describe,
// xdescribe,
// it,
// iit,
// xit,
// expect,
// beforeEach,
// afterEach,
// AsyncTestCompleter,
// inject,
// beforeEachBindings
// } from 'angular2/test';
// import {Compiler} from 'angular2/angular2';
import {
NavController,
Config,