fix(input): remove clear icon in edge

This commit is contained in:
Manu Mtz.-Almeida
2018-11-02 22:47:18 +01:00
committed by Manu MA
parent a8be5291bb
commit 59bee23734
4 changed files with 13 additions and 1 deletions

View File

@@ -96,6 +96,9 @@
font-weight: inherit;
}
&::-ms-clear {
display: none;
}
}

View File

@@ -81,6 +81,10 @@
font-family: inherit;
font-weight: inherit;
}
&::-ms-clear {
display: none;
}
}
.alert-input:focus {

View File

@@ -88,6 +88,10 @@
&:-webkit-autofill {
background-color: transparent;
}
&::-ms-clear {
display: none;
}
}
.native-input[disabled] {

View File

@@ -93,7 +93,8 @@
opacity: var(--placeholder-opacity);
}
&::-webkit-search-cancel-button {
&::-webkit-search-cancel-button,
&::-ms-clear {
display: none;
}
}