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,6 +68,7 @@
position: absolute; position: absolute;
} }
@media (hover: hover) {
&:not(:active):not(:focus):not(:hover) { &:not(:active):not(:focus):not(:hover) {
.icon-send, .icon-send,
.icon-schedule, .icon-schedule,
@ -75,6 +76,17 @@
color: var(--color-primary); color: var(--color-primary);
} }
} }
}
@media (hover: none) {
&:not(:active):not(:focus) {
.icon-send,
.icon-schedule,
.icon-check {
color: var(--color-primary);
}
}
}
&.cancel { &.cancel {
position: relative; position: relative;