]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
move the url to the variable value
authorMark Otto <markdotto@gmail.com>
Sun, 7 Feb 2016 02:05:24 +0000 (18:05 -0800)
committerMark Otto <markdotto@gmail.com>
Sun, 7 Feb 2016 02:05:24 +0000 (18:05 -0800)
scss/_custom-forms.scss
scss/_forms.scss

index 03171bc4de90b088eab71e4aca7e277ced2306df..dbb32d42e06d4226b4fd59b43e2632aaed718e4e 100644 (file)
   }
 
   .custom-control-input:checked ~ .custom-control-indicator {
-    background-image: url(#{$custom-checkbox-checked-icon});
+    background-image: $custom-checkbox-checked-icon;
   }
 
   .custom-control-input:indeterminate ~ .custom-control-indicator {
     background-color: $custom-checkbox-indeterminate-bg;
-    background-image: url(#{$custom-checkbox-indeterminate-icon});
+    background-image: $custom-checkbox-indeterminate-icon;
     @include box-shadow($custom-checkbox-indeterminate-box-shadow);
   }
 }
   }
 
   .custom-control-input:checked ~ .custom-control-indicator {
-    background-image: url(#{$custom-radio-checked-icon});
+    background-image: $custom-radio-checked-icon;
   }
 }
 
index fd467030ad6209d05b9cddb3c235ef43748526bd..108c57e090161aac590a76563c573801721b2339 100644 (file)
@@ -271,7 +271,7 @@ input[type="checkbox"] {
   @include form-control-validation($brand-success);
 
   .form-control-success {
-    background-image: url($form-icon-success);
+    background-image: $form-icon-success;
   }
 }
 
@@ -279,7 +279,7 @@ input[type="checkbox"] {
   @include form-control-validation($brand-warning);
 
   .form-control-warning {
-    background-image: url($form-icon-warning);
+    background-image: $form-icon-warning;
   }
 }
 
@@ -287,7 +287,7 @@ input[type="checkbox"] {
   @include form-control-validation($brand-danger);
 
   .form-control-danger {
-    background-image: url($form-icon-danger);
+    background-image: $form-icon-danger;
   }
 }