From 935603330a6f739b64c6dff39bd331ebc33d57bd Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Mon, 25 Nov 2013 10:54:41 -0600 Subject: [PATCH] !important not necessary --- dist/css/ionic.css | 4 ++-- scss/_range.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/css/ionic.css b/dist/css/ionic.css index e7a3213266..d3c5dda4e0 100644 --- a/dist/css/ionic.css +++ b/dist/css/ionic.css @@ -4432,7 +4432,7 @@ input[type="range"] { background-position: center; background-size: 96% 4px; background-repeat: no-repeat; - -webkit-appearance: none !important; } + -webkit-appearance: none; } input[type="range"]::-webkit-slider-thumb { position: relative; width: 20px; @@ -4441,7 +4441,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 !important; } + -webkit-appearance: none; } input[type="range"]::-webkit-slider-thumb:before { /* what creates the colorful line on the left side of the slider */ position: absolute; diff --git a/scss/_range.scss b/scss/_range.scss index ed8c878eb2..2b048b6075 100644 --- a/scss/_range.scss +++ b/scss/_range.scss @@ -19,7 +19,7 @@ input[type="range"] { background-position: center; background-size: 96% $range-track-height; background-repeat: no-repeat; - -webkit-appearance: none !important; + -webkit-appearance: none; &::-webkit-slider-thumb { position: relative; @@ -29,7 +29,7 @@ input[type="range"] { background-color: $toggle-handle-off-bg-color; box-shadow: 0 0 2px rgba(0,0,0,.5), 1px 3px 5px rgba(0,0,0,0.25); cursor: pointer; - -webkit-appearance: none !important; + -webkit-appearance: none; } &::-webkit-slider-thumb:before {