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,12 +16,12 @@ | ||
16 | 16 | ||
17 | .tb-dashboard-assigned-customers { | 17 | .tb-dashboard-assigned-customers { |
18 | display: block; | 18 | display: block; |
19 | - display: -webkit-box; | 19 | + display: -webkit-box; /* stylelint-disable-line value-no-vendor-prefix */ |
20 | height: 34px; | 20 | height: 34px; |
21 | margin-bottom: 4px; | 21 | margin-bottom: 4px; |
22 | overflow: hidden; | 22 | overflow: hidden; |
23 | text-overflow: ellipsis; | 23 | text-overflow: ellipsis; |
24 | -webkit-line-clamp: 2; | 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 |
@@ -42,7 +42,7 @@ textarea { | @@ -42,7 +42,7 @@ textarea { | ||
42 | word-wrap: normal; | 42 | word-wrap: normal; |
43 | white-space: nowrap; | 43 | white-space: nowrap; |
44 | direction: ltr; | 44 | direction: ltr; |
45 | - -webkit-font-feature-settings: "liga"; | 45 | + -webkit-font-feature-settings: "liga"; /* stylelint-disable-line property-no-vendor-prefix */ |
46 | } | 46 | } |
47 | 47 | ||
48 | a { | 48 | a { |
@@ -15,6 +15,7 @@ | @@ -15,6 +15,7 @@ | ||
15 | */ | 15 | */ |
16 | @import "~compass-sass-mixins/lib/compass"; | 16 | @import "~compass-sass-mixins/lib/compass"; |
17 | 17 | ||
18 | +/* stylelint-disable selector-no-vendor-prefix */ | ||
18 | @mixin input-placeholder { | 19 | @mixin input-placeholder { |
19 | // replaces compass/css/user-interface/input-placeholder() | 20 | // replaces compass/css/user-interface/input-placeholder() |
20 | 21 | ||
@@ -36,6 +37,7 @@ | @@ -36,6 +37,7 @@ | ||
36 | @content; | 37 | @content; |
37 | } | 38 | } |
38 | } | 39 | } |
40 | +/* stylelint-enable selector-no-vendor-prefix */ | ||
39 | 41 | ||
40 | @mixin line-clamp($numLines: 1, $lineHeight: 1.412) { | 42 | @mixin line-clamp($numLines: 1, $lineHeight: 1.412) { |
41 | position: relative; | 43 | position: relative; |