Disable webkit icons

Disable webkit icons to make room for our icons.
Add changelog
Fix lint, add ignore to stylelint
Add enable to start lint again
This commit is contained in:
Jarek Ostrowski 2019-05-28 11:32:44 -04:00
parent df7bebd67c
commit 147c03597a
2 changed files with 15 additions and 0 deletions

View File

@ -261,3 +261,13 @@ input[type='checkbox']:hover {
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 */

View File

@ -0,0 +1,5 @@
---
title: Add style to disable webkit icons for search inputs
merge_request: 28833
author: Jarek Ostrowski @jareko
type: fixed