This commit is contained in:
Freeplay 2023-05-25 16:24:31 -04:00
parent b5ffb5af8d
commit c683ee304e
1 changed files with 3 additions and 1 deletions

View File

@ -569,7 +569,7 @@ onUnmounted(() => {
background: var(--panelHighlight); background: var(--panelHighlight);
border-radius: var(--radius); border-radius: var(--radius);
opacity: 0; opacity: 0;
transition: opacity 0.2s; transition: opacity 0.2s, background 0.2s;
z-index: -1; z-index: -1;
} }
&.reply-to { &.reply-to {
@ -604,6 +604,7 @@ onUnmounted(() => {
--panel: var(--panelHighlight); --panel: var(--panelHighlight);
&::before { &::before {
opacity: 1; opacity: 1;
background: var(--panelHighlight) !important;
} }
} }
// @media (pointer: coarse) { // @media (pointer: coarse) {
@ -623,6 +624,7 @@ onUnmounted(() => {
&::before { &::before {
outline: auto; outline: auto;
opacity: 1; opacity: 1;
background: none;
} }
} }