diff --git a/dist/css/ionic.css b/dist/css/ionic.css index a35dbfe04c..042c700526 100644 --- a/dist/css/ionic.css +++ b/dist/css/ionic.css @@ -183,7 +183,7 @@ sub { fieldset { margin: 0 2px; padding: 0.35em 0.625em 0.75em; - border: 1px solid #c0c0c0; } + border: 1px solid silver; } /** * 1. Correct `color` not being inherited in IE 8/9. @@ -2329,7 +2329,7 @@ input[type="checkbox"][readonly] { border-radius: 50%; background: white; content: ' '; - transition: background-color .1s ease-in-out; } + transition: background-color 0.1s ease-in-out; } /* the checkmark within the box */ .checkbox input:after { @@ -2344,7 +2344,7 @@ input[type="checkbox"][readonly] { border-right: 0; content: ' '; opacity: 0; - transition: opacity .05s ease-in-out; + transition: opacity 0.05s ease-in-out; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } @@ -2797,7 +2797,7 @@ input[type="range"] { .button-icon:active, .button-icon.active { background: none; box-shadow: none; - text-shadow: 0px 0px 10px #fff; } + text-shadow: 0px 0px 10px white; } .button-icon .icon { font-size: 32px; } @@ -3492,7 +3492,7 @@ a.button { .platform-ios7 .has-header { margin-top: 64px; } -/*! +/* Ionicons, v1.3.5 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ https://twitter.com/helloimben https://twitter.com/ionicframework diff --git a/dist/css/themes/ionic-ios7.css b/dist/css/themes/ionic-ios7.css index 680f21850c..53b57eba7c 100644 --- a/dist/css/themes/ionic-ios7.css +++ b/dist/css/themes/ionic-ios7.css @@ -1,3 +1,4 @@ +@charset "UTF-8"; /** * Nav controllers and header bar animations */ @@ -118,7 +119,7 @@ right: 20px; transition: 0.2s ease; transition-property: left, right; - transition-delay: 0s, .05s; } + transition-delay: 0s, 0.05s; } .toggle :checked + .track { /* When the toggle is "on" */ @@ -133,4 +134,4 @@ right: 0; left: 20px; -webkit-transform: none; - transition-delay: .05s, 0s; } + transition-delay: 0.05s, 0s; } diff --git a/dist/js/ionic-angular.js b/dist/js/ionic-angular.js index 75a4fdae1e..254dee9fd7 100644 --- a/dist/js/ionic-angular.js +++ b/dist/js/ionic-angular.js @@ -24624,6 +24624,7 @@ angular.module('ionic.ui.tabs', ['ngAnimate']) $scope.$watch('isVisible', function(value) { if(childElement) { $animate.leave(childElement); + $scope.$broadcast('tab.hidden'); childElement = undefined; } if(childScope) { @@ -24636,6 +24637,8 @@ angular.module('ionic.ui.tabs', ['ngAnimate']) childElement = clone; childElement.addClass('view-full'); $animate.enter(clone, $element.parent(), $element); + + $scope.$broadcast('tab.shown'); }); } });