File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ // cssnano produces improper output in postcss-normalize-positions
2+ // clean-css
3+ // this is a temp fix to avoid the issue where
4+ // input:
5+ // background-position: center right $input-height-inner-quarter;
6+ // produces output:
7+ // background-position: 100% $input-height-inner-quarter;
8+
9+ .was-validated .form-control :valid , .form-control.is-valid {
10+ background-position : right $input-height-inner-quarter center ;
11+ }
12+
13+ .was-validated .form-control :invalid , .form-control.is-invalid {
14+ background-position : right $input-height-inner-quarter center ;
15+ }
Original file line number Diff line number Diff line change 6363
6464// Custom Properties support for Internet Explorer
6565@import " ie-custom-properties" ;
66+
67+ // temp fixes
68+ @import " fixes" ;
Original file line number Diff line number Diff line change 6262
6363// Custom Properties support for Internet Explorer
6464@import " ie-custom-properties" ;
65+
66+ // temp fixes
67+ @import " fixes" ;
You can’t perform that action at this time.
0 commit comments