]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fix: form progress bar mixin calls `has-value` as `hasvalue` 11250/head
authorDavid Niciforovic <david.r.niciforovic@gmail.com>
Fri, 11 May 2018 21:00:04 +0000 (17:00 -0400)
committerDavid Niciforovic <david.r.niciforovic@gmail.com>
Fri, 11 May 2018 21:00:04 +0000 (17:00 -0400)
scss/forms/_progress.scss

index a802fa9085b0ab234109cff4be0a9f12b460c88d..93654709f587129ed655cf846ce836ccb088de36 100644 (file)
@@ -35,7 +35,7 @@ $progress-radius: $global-radius !default;
 
     appearance: none;
 
-    @if hasvalue($progress-radius) {
+    @if has-value($progress-radius) {
       border-radius: $progress-radius;
     }
 
@@ -46,7 +46,7 @@ $progress-radius: $global-radius !default;
     &::-webkit-progress-bar {
       background: $progress-background;
 
-      @if hasvalue($progress-radius) {
+      @if has-value($progress-radius) {
         border-radius: $progress-radius;
       }
     }
@@ -54,7 +54,7 @@ $progress-radius: $global-radius !default;
     &::-webkit-progress-value {
       background: $progress-meter-background;
 
-      @if hasvalue($progress-radius) {
+      @if has-value($progress-radius) {
         border-radius: $progress-radius;
       }
     }
@@ -62,7 +62,7 @@ $progress-radius: $global-radius !default;
     &::-moz-progress-bar {
       background: $progress-meter-background;
 
-      @if hasvalue($progress-radius) {
+      @if has-value($progress-radius) {
         border-radius: $progress-radius;
       }
     }
@@ -84,7 +84,7 @@ $progress-radius: $global-radius !default;
 
     // For IE and Edge
     &::-ms-fill { // sass-lint:disable-line no-vendor-prefixes
-      @if hasvalue($progress-radius) {
+      @if has-value($progress-radius) {
         border-radius: $progress-radius;
       }