2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

move the url to the variable value

This commit is contained in:
Mark Otto
2016-02-06 18:05:24 -08:00
parent 11606d391e
commit dee1979683
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -84,12 +84,12 @@
}
.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);
}
}
@@ -104,7 +104,7 @@
}
.custom-control-input:checked ~ .custom-control-indicator {
background-image: url(#{$custom-radio-checked-icon});
background-image: $custom-radio-checked-icon;
}
}