Commit 8b200634 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Merge branch '62227-webkit-icon-overlap' into 'master'

Disable webkit icons

Closes #62227

See merge request gitlab-org/gitlab-ce!28833
parents adfb6d9f 147c0359
...@@ -261,3 +261,13 @@ input[type='checkbox']:hover { ...@@ -261,3 +261,13 @@ input[type='checkbox']:hover {
color: $blue-600; color: $blue-600;
} }
} }
// Disable webkit input icons, link to solution: https://stackoverflow.com/questions/9421551/how-do-i-remove-all-default-webkit-search-field-styling
/* stylelint-disable property-no-vendor-prefix */
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
-webkit-appearance: none;
}
/* stylelint-enable */
---
title: Add style to disable webkit icons for search inputs
merge_request: 28833
author: Jarek Ostrowski @jareko
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment