Composer: Fix active voice recording button color on mobile (#2895)

This commit is contained in:
Alexander Zinchuk 2023-03-30 18:26:08 -05:00
parent 1103f83113
commit 3141423eae

View File

@ -68,11 +68,23 @@
position: absolute;
}
&:not(:active):not(:focus):not(:hover) {
.icon-send,
.icon-schedule,
.icon-check {
color: var(--color-primary);
@media (hover: hover) {
&:not(:active):not(:focus):not(:hover) {
.icon-send,
.icon-schedule,
.icon-check {
color: var(--color-primary);
}
}
}
@media (hover: none) {
&:not(:active):not(:focus) {
.icon-send,
.icon-schedule,
.icon-check {
color: var(--color-primary);
}
}
}