diff options
| author | 2020-04-10 22:22:02 +1000 | |
|---|---|---|
| committer | 2020-04-10 14:22:02 +0200 | |
| commit | da67489df2f5ea303a4c04c9bfd3d8e832c327f4 (patch) | |
| tree | 2420137001438522e9ff90ef73876de9da6599bc | |
| parent | f29b63df3b8b8e909208094446b2e79145ec50e6 (diff) | |
Fix search input styling in Safari (#2887)
* Fix search input styling in Safari
#fix https://github.com/FreshRSS/FreshRSS/issues/2885
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
| -rw-r--r-- | p/themes/base-theme/template.css | 6 | ||||
| -rw-r--r-- | p/themes/base-theme/template.rtl.css | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 48fa4e9bf..5a7c32cdd 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -572,6 +572,12 @@ a.btn { width: 100px; } +input[type="search"] { + /* stylelint-disable property-no-vendor-prefix */ + -webkit-appearance: none; + /* stylelint-enable property-no-vendor-prefix */ +} + /*=== Body */ #global { display: table; diff --git a/p/themes/base-theme/template.rtl.css b/p/themes/base-theme/template.rtl.css index d90d712b9..6f3cb34d4 100644 --- a/p/themes/base-theme/template.rtl.css +++ b/p/themes/base-theme/template.rtl.css @@ -572,6 +572,12 @@ a.btn { width: 100px; } +input[type="search"] { + /* stylelint-disable property-no-vendor-prefix */ + -webkit-appearance: none; + /* stylelint-enable property-no-vendor-prefix */ +} + /*=== Body */ #global { display: table; |
