aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar kinoushe <25278192+kinoushe@users.noreply.github.com> 2020-04-10 22:22:02 +1000
committerGravatar GitHub <noreply@github.com> 2020-04-10 14:22:02 +0200
commitda67489df2f5ea303a4c04c9bfd3d8e832c327f4 (patch)
tree2420137001438522e9ff90ef73876de9da6599bc
parentf29b63df3b8b8e909208094446b2e79145ec50e6 (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.css6
-rw-r--r--p/themes/base-theme/template.rtl.css6
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;