Content element must have "has-header" as a classname.
diff --git a/js/views/ionic-segmented.js b/js/views/ionic-segmented.js new file mode 100644 index 0000000000..fe9e8810bf --- /dev/null +++ b/js/views/ionic-segmented.js @@ -0,0 +1,3 @@ +(function(window, document, ion) { + +}); diff --git a/scss/ionic/structure/_animations.css b/scss/ionic/structure/_animations.css new file mode 100644 index 0000000000..4ec1ff5626 --- /dev/null +++ b/scss/ionic/structure/_animations.css @@ -0,0 +1,7 @@ +.slide-in-up.enter { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + + -webkit-transition: -webkit-transform .25s ease-in-out, opacity 1ms .25s; + transition: transform .25s ease-in-out, opacity 1ms .25s; +} diff --git a/scss/ionic/structure/_base.scss b/scss/ionic/structure/_base.scss index b18fd5e08c..865cb0efea 100644 --- a/scss/ionic/structure/_base.scss +++ b/scss/ionic/structure/_base.scss @@ -1,15 +1,8 @@ // TODO: This might be inefficient? -*, *:before, *:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: - border-box; - box-sizing: border-box; - } // Make sure iOS Safari doesn't scale fonts on orientation changes html { -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; @include disable-user-select(); }