Reset radius applied by Chrome 62 using low specificity selectors

This commit is contained in:
Adam Wathan 2017-11-18 10:45:29 -05:00
parent b9114478d4
commit 7305bac176
2 changed files with 24 additions and 0 deletions

View File

@ -530,6 +530,18 @@ fieldset {
border-color: #dae4e9;
}
/**
* Temporary reset for a change introduced in Chrome 62 but now reverted.
*
* We can remove this when the reversion is in a normal Chrome release.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
border-radius: 0;
}
textarea {
resize: vertical;
}

View File

@ -530,6 +530,18 @@ fieldset {
border-color: config('borderColors.default', currentColor);
}
/**
* Temporary reset for a change introduced in Chrome 62 but now reverted.
*
* We can remove this when the reversion is in a normal Chrome release.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
border-radius: 0;
}
textarea { resize: vertical; }
img { max-width: 100%; }