commit | e4de6b3c30a4d8c22da4d36bc2422efbba32a4ad | [log] [tgz] |
---|---|---|
author | Mathias Bynens <[email protected]> | Tue Jul 14 14:46:31 2020 |
committer | Commit Bot <[email protected]> | Tue Jul 14 14:47:38 2020 |
tree | ccb4d4f6016a493d8b7b75b9027beee3c1180196 | |
parent | 40c0f70668ac9f16941fac1cf358f89ef33ac7f5 [diff] [blame] |
Reland “Enable property-no-vendor-prefix stylelint check” This patch drops unnecessary -webkit- prefixes in CSS and enables a lint check to enforce that prevent such properties from being added in the future. Note that the use of vendor-prefixed CSS properties is still accepted in cases where there is no standardized and browser-supported alternative. [email protected] No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: chromium:1104187 Change-Id: Ibf36fe5a3802b5f3ac663b7ac873a4758e0fda14 Fixed: chromium:1031475 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2297386 Reviewed-by: Changhao Han <[email protected]> Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2297393 Commit-Queue: Mathias Bynens <[email protected]> Auto-Submit: Mathias Bynens <[email protected]> Reviewed-by: Mathias Bynens <[email protected]>
diff --git a/front_end/ui/checkboxTextLabel.css b/front_end/ui/checkboxTextLabel.css index d1b4703..beef3b6 100644 --- a/front_end/ui/checkboxTextLabel.css +++ b/front_end/ui/checkboxTextLabel.css
@@ -28,7 +28,7 @@ } input.dt-checkbox-themed { - -webkit-appearance: none; + appearance: none; margin: auto 5px auto 2px; border: 1px solid rgb(45 45 45); border-radius: 3px;