Remove x icon

Replaces with typographical "×" character to reduce confusion with close icons elsewhere.
This commit is contained in:
Henry Wilkinson 2023-07-20 13:10:16 -04:00 committed by ayumi yu
parent abeb1e233b
commit 8ac77aa9f4

View file

@ -46,25 +46,6 @@
}
&::after {
content: '';
display: inline-block;
width: 8px;
height: 8px;
margin-inline-start: 2px;
@mixin x-icon($color) {
@include color-svg('../images/icons/v3/x/x-compact.svg', $color, false);
}
@include light-theme {
@include x-icon($color-gray-60);
}
@include dark-theme {
@include x-icon($color-gray-25);
}
.module-message__audio-attachment--outgoing & {
@include x-icon($color-white-alpha-80);
}
content: '×';
}
}