1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

Convert background shorthands to separate properties

This commit is contained in:
Martijn Cuppens
2019-12-19 10:38:43 +01:00
committed by XhmikosR
parent 980c5fd728
commit dc64ff3314
6 changed files with 17 additions and 7 deletions

View File

@@ -2,6 +2,6 @@
@mixin bg-gradient-variant($parent, $color) {
#{$parent} {
background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
background-image: linear-gradient(180deg, mix($body-bg, $color, 15%), $color) !important;
}
}

View File

@@ -79,7 +79,9 @@
@if $enable-validation-icons {
padding-right: $form-select-feedback-icon-padding-right;
background: escape-svg($form-select-indicator) $form-select-background, escape-svg($icon) $form-select-bg no-repeat $form-select-feedback-icon-position / $form-select-feedback-icon-size;
background-image: escape-svg($form-select-indicator), escape-svg($icon);
background-position: $form-select-bg-position, $form-select-feedback-icon-position;
background-size: $form-select-bg-size, $form-select-feedback-icon-size;
}
&:focus {