Releases: postcss/autoprefixer
Releases · postcss/autoprefixer
10.3 “Чести своей не отдам никому”
In Autoprefixer 10.3 @lukewarlow added ::file-selector-button
support.
::-webkit-file-upload-button {
border: 2px solid #6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
::file-selector-button {
border: 2px solid #6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
10.2.6
10.2.5
10.2.4
10.2.3
10.2.2
10.2.1
10.2 “Sub rosa”
Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer
anymore.
Thanks to @Semigradsky and DefinitelyTyped’s contributors.
@Sheraff also improved docs.
10.1 “Pula”
Autoprefixer 10.1 improved min-resolution
support.
@infusion added dpcm
unit support and num2fraction
with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.
/* input */
@media (min-resolution: 113.38dpcm) {
…
}
/* output */
@media (-webkit-min-device-pixel-ratio: 3),
(min--moz-device-pixel-ratio: 3),
(-o-min-device-pixel-ratio: 3/1),
(min-resolution: 113.38dpcm) {
…
}
10.0.4
- Fixed
Cannot read property 'proxyOf' of undefined
error (by @igorkamyshev).