Update dependency autoprefixer to ^9.8.0
Created by: renovate[bot]
This PR contains the following updates:
Package | Type | Update | New value | References | Sourcegraph |
---|---|---|---|---|---|
autoprefixer | devDependencies | minor | ^9.8.0 | source |
Release Notes
postcss/autoprefixer
v9.8.0
Autoprefixer 9.8 brings IE support for :placeholder-shown
.
Placeholder Shown
@tkrotoff found that input:placeholder-shown
can be emulated with input:-ms-input-placeholder
.
input:-ms-input-placeholder {
box-shadow: 0 0 0 1px blue;
}
input:placeholder-shown {
box-shadow: 0 0 0 1px blue;
}
Note, that we already had support for ::placeholder
. Selector ::placeholder
is for the text of the placeholder. :placeholder-shown
is for the input, where placeholder text is shown. In ::placeholder
you can’t change the border or size of the <input>
.
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.