Commit dda10775a34e45489d487c9e2d09d0b123d0ccf0
1 parent
813f7e1c
Disable stylelint to keep some vendor prefix
Showing
3 changed files
with
5 additions
and
3 deletions
... | ... | @@ -16,12 +16,12 @@ |
16 | 16 | |
17 | 17 | .tb-dashboard-assigned-customers { |
18 | 18 | display: block; |
19 | - display: -webkit-box; | |
19 | + display: -webkit-box; /* stylelint-disable-line value-no-vendor-prefix */ | |
20 | 20 | height: 34px; |
21 | 21 | margin-bottom: 4px; |
22 | 22 | overflow: hidden; |
23 | 23 | text-overflow: ellipsis; |
24 | 24 | -webkit-line-clamp: 2; |
25 | - -webkit-box-orient: vertical; | |
25 | + -webkit-box-orient: vertical; /* stylelint-disable-line property-no-vendor-prefix */ | |
26 | 26 | } |
27 | 27 | ... | ... |
... | ... | @@ -15,6 +15,7 @@ |
15 | 15 | */ |
16 | 16 | @import "~compass-sass-mixins/lib/compass"; |
17 | 17 | |
18 | +/* stylelint-disable selector-no-vendor-prefix */ | |
18 | 19 | @mixin input-placeholder { |
19 | 20 | // replaces compass/css/user-interface/input-placeholder() |
20 | 21 | |
... | ... | @@ -36,6 +37,7 @@ |
36 | 37 | @content; |
37 | 38 | } |
38 | 39 | } |
40 | +/* stylelint-enable selector-no-vendor-prefix */ | |
39 | 41 | |
40 | 42 | @mixin line-clamp($numLines: 1, $lineHeight: 1.412) { |
41 | 43 | position: relative; | ... | ... |