hide clear button in composer on IE

This commit is contained in:
Bruno Windels 2020-11-10 14:02:37 +01:00
parent 769feac73c
commit e4fa4ded6c

View file

@ -44,3 +44,8 @@ body.hydrogen {
.hidden {
display: none !important;
}
/* hide clear buttons in IE */
input::-ms-clear {
display: none;
}