]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Disabled Autoprefixer and just used `-moz-`
authorharry <harmanmanchanda182@gmail.com>
Sun, 12 Mar 2017 15:11:36 +0000 (20:41 +0530)
committerharry <harmanmanchanda182@gmail.com>
Sun, 12 Mar 2017 15:11:36 +0000 (20:41 +0530)
scss/forms/_meter.scss

index 81aff75e321f75e09f97ef2f3dbb66d5adfbee15..f225f8aef7545217ad91005c3a1612824ac25d31 100644 (file)
@@ -37,8 +37,13 @@ $meter-fill-bad: $alert-color !default;
     height: $meter-height;
     margin-bottom: 1rem;
 
-    -webkit-appearance: -hack-; // Hack to disable `-webkit-appearance: none` from getting prefixed
-    appearance: none;
+    // Specific Hack to disable `-webkit-appearance: none` from getting prefixed,
+    // We have disabled autoprefixer first and are just using `-moz-appearance: none` 
+    // as a prefix and neglecting `-webkit-appearance: none`
+    
+    /*! autoprefixer: off */
+    -moz-appearance: none;
+         appearance: none;
 
     @if has-value($meter-radius) {
       border-radius: $meter-radius;