diff --git a/dist/css/ionic.css b/dist/css/ionic.css index 114b3052f3..38dbc1ca13 100644 --- a/dist/css/ionic.css +++ b/dist/css/ionic.css @@ -1,3 +1,4 @@ +@charset "UTF-8"; /** * Copyright 2013 Drifty Co. * http://drifty.com/ @@ -2562,11 +2563,11 @@ a.subdued { .action-sheet-backdrop.active { -webkit-animation: fadeInHalf 0.3s; animation: fadeInHalf 0.3s; - -webkit-animation-fill-mode: both; } + -webkit-animation-fill-mode: forwards; } .action-sheet-backdrop.active-remove { -webkit-animation: fadeOutHalf 0.3s; animation: fadeOutHalf 0.3s; - -webkit-animation-fill-mode: both; } + -webkit-animation-fill-mode: forwards; } @-webkit-keyframes actionSheetUp { 0% { @@ -4126,6 +4127,7 @@ textarea { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; + display: block !important; overflow: hidden; padding: 4px 8px 3px; border: none; @@ -4438,7 +4440,7 @@ input[type="range"] { background-position: center; background-size: 96% 4px; background-repeat: no-repeat; - -webkit-appearance: none; } + -webkit-appearance: none !important; } input[type="range"]::-webkit-slider-thumb { position: relative; width: 20px; @@ -4447,7 +4449,7 @@ input[type="range"] { background-color: white; box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 1px 3px 5px rgba(0, 0, 0, 0.25); cursor: pointer; - -webkit-appearance: none; } + -webkit-appearance: none !important; } input[type="range"]::-webkit-slider-thumb:before { /* what creates the colorful line on the left side of the slider */ position: absolute; @@ -5479,10 +5481,10 @@ a.button { */ .hidden, .hide { - display: none; } + display: none !important; } .show { - display: block; } + display: block !important; } .inline { display: inline-block; } diff --git a/dist/js/ionic-angular.js b/dist/js/ionic-angular.js index fd44af82a3..0ffca7dec9 100644 --- a/dist/js/ionic-angular.js +++ b/dist/js/ionic-angular.js @@ -469,7 +469,6 @@ angular.module('ionic.ui.actionSheet', []) $scope.$on('$destroy', function() { $element.remove(); $document.unbind('keyup', keyUp); - $element.unbind('click', backdropClick); }); $document.bind('keyup', keyUp); diff --git a/js/ext/angular/src/directive/ionicActionSheet.js b/js/ext/angular/src/directive/ionicActionSheet.js index 11fd4ab077..bce4f1d8a8 100644 --- a/js/ext/angular/src/directive/ionicActionSheet.js +++ b/js/ext/angular/src/directive/ionicActionSheet.js @@ -25,7 +25,6 @@ angular.module('ionic.ui.actionSheet', []) $scope.$on('$destroy', function() { $element.remove(); $document.unbind('keyup', keyUp); - $element.unbind('click', backdropClick); }); $document.bind('keyup', keyUp);