From 101254a034866c2d6fd0f34e8d3b6b0f925da38a Mon Sep 17 00:00:00 2001 From: connors Date: Fri, 14 Feb 2014 23:09:42 -0800 Subject: [PATCH] minor toggle change --- dist/ios-theme.css | 6 ------ docs-assets/css/docs.css | 6 ------ lib/sass/theme-ios.scss | 6 ------ 3 files changed, 18 deletions(-) diff --git a/dist/ios-theme.css b/dist/ios-theme.css index 9450f80..abbb962 100644 --- a/dist/ios-theme.css +++ b/dist/ios-theme.css @@ -402,12 +402,6 @@ textarea, -ms-transform: translate3d(17px, 0, 0); transform: translate3d(17px, 0, 0); } -.toggle.active:active .toggle-handle, -.toggle.active .toggle-handle:active { - -webkit-transform: translate3d(10px, 0, 0) !important; - -ms-transform: translate3d(10px, 0, 0) !important; - transform: translate3d(10px, 0, 0) !important; -} .toggle.active .toggle-handle { border-color: #4cd964; } diff --git a/docs-assets/css/docs.css b/docs-assets/css/docs.css index cf4023c..3aaf9ea 100644 --- a/docs-assets/css/docs.css +++ b/docs-assets/css/docs.css @@ -1149,12 +1149,6 @@ hr { -ms-transform: translate3d(17px, 0, 0); transform: translate3d(17px, 0, 0); } -.platform-ios .toggle.active:active .toggle-handle, -.platform-ios .toggle.active .toggle-handle:active { - -webkit-transform: translate3d(10px, 0, 0) !important; - -ms-transform: translate3d(10px, 0, 0) !important; - transform: translate3d(10px, 0, 0) !important; -} .platform-ios .toggle.active .toggle-handle { border-color: #4cd964; } diff --git a/lib/sass/theme-ios.scss b/lib/sass/theme-ios.scss index 0b03d5d..018860f 100644 --- a/lib/sass/theme-ios.scss +++ b/lib/sass/theme-ios.scss @@ -524,12 +524,6 @@ textarea, @include transform(translate3d(17px,0,0)); } - // When the handle and the container is active - &:active .toggle-handle, - .toggle-handle:active { - @include transform(translate3d(10px,0,0) !important); // Evil important tag is used to overwrite js. - } - .toggle-handle { border-color: $positive-color; }