diff options
| -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; |
