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 63
63
64
64
// Custom Properties support for Internet Explorer
65
65
@import " ie-custom-properties" ;
66
+
67
+ // temp fixes
68
+ @import " fixes" ;
Original file line number Diff line number Diff line change 62
62
63
63
// Custom Properties support for Internet Explorer
64
64
@import " ie-custom-properties" ;
65
+
66
+ // temp fixes
67
+ @import " fixes" ;
You can’t perform that action at this time.
0 commit comments