1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-06 21:27:03 +02:00

Unprefix -webkit-appearance (#270)

`-webkit-appearance` should be unprefixed [1].

Autoprefixer will add in the necessary vendor prefixes on build.

[1]: https://developer.mozilla.org/en-US/docs/Web/CSS/appearance
This commit is contained in:
Tan Zhen Yong
2022-01-21 05:09:33 +08:00
committed by GitHub
parent 059b290e2b
commit af68904f68
3 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
"water.css": patch
---
Unprefix `-webkit-appearance`

View File

@@ -82,7 +82,7 @@ input[type='range'],
select, select,
button, button,
textarea { textarea {
-webkit-appearance: none; appearance: none;
} }
textarea { textarea {

View File

@@ -22,7 +22,7 @@ input[type='range']::-webkit-slider-thumb {
width: 20px; width: 20px;
border-radius: 50%; border-radius: 50%;
background: var(--border); background: var(--border);
-webkit-appearance: none; appearance: none;
margin-top: -7px; margin-top: -7px;
} }