Only reset border radius on elements Chrome borked it on

This commit is contained in:
Adam Wathan 2017-11-15 10:22:42 -05:00
parent 918673e672
commit c6ccadea3a
2 changed files with 24 additions and 0 deletions

View File

@ -528,6 +528,18 @@ fieldset {
border-width: 0;
border-style: solid;
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.
*/
input[type="button" i],
input[type="submit" i],
input[type="reset" i],
input[type="file" i]::-webkit-file-upload-button,
button {
border-radius: 0;
}

View File

@ -528,6 +528,18 @@ fieldset {
border-width: 0;
border-style: solid;
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.
*/
input[type="button" i],
input[type="submit" i],
input[type="reset" i],
input[type="file" i]::-webkit-file-upload-button,
button {
border-radius: 0;
}