Commit bc67c712 authored by Clement Ho's avatar Clement Ho

Merge branch 'winh-shame-ms-clear' into 'master'

Add .ms-no-clear to disable duplicate clear icon in IE / Edge

See merge request gitlab-org/gitlab-ce!24640
parents a18a884a 4d2da17e
......@@ -408,3 +408,14 @@ img.emoji {
.gl-pr-3 { padding-right: #{2 * $grid-size}; }
.gl-pr-4 { padding-right: #{3 * $grid-size}; }
.gl-pr-5 { padding-right: #{4 * $grid-size}; }
/**
* Removes browser specific clear icon from input fields in
* Internet Explorer 10, Internet Explorer 11, and Microsoft Edge.
* This is intended for elements which add a customized clear icon.
*
* see also https://developer.mozilla.org/en-US/docs/Web/CSS/::-ms-clear
*/
.ms-no-clear ::-ms-clear {
display: none;
}
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