diff options
| author | Martijn Cuppens <[email protected]> | 2020-10-28 15:03:41 +0100 |
|---|---|---|
| committer | Martijn Cuppens <[email protected]> | 2020-10-28 18:29:28 +0100 |
| commit | b1c7d1d3a343da497f40dc71ac74f02cb3bedb11 (patch) | |
| tree | d09b2a76c7160a3a6428e8e6a3190123c366079b /scss/_reboot.scss | |
| parent | b2be299f63d2b0d45d961d046d506a2c09435f41 (diff) | |
| download | bootstrap-b1c7d1d3a343da497f40dc71ac74f02cb3bedb11.tar.xz bootstrap-b1c7d1d3a343da497f40dc71ac74f02cb3bedb11.zip | |
Use the same font on the button as on the field itself
Diffstat (limited to 'scss/_reboot.scss')
| -rw-r--r-- | scss/_reboot.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index e144c9bf7..35d5bbd99 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -575,7 +575,15 @@ legend { padding: 0; } -// 1. Change font properties to `inherit` in Safari. + +// Inherit font family and line height for file input buttons + +// stylelint-disable-next-line selector-pseudo-element-no-unknown +::file-selector-button { + font: inherit; +} + +// 1. Change font properties to `inherit` // 2. Correct the inability to style clickable types in iOS and Safari. ::-webkit-file-upload-button { |
