add footer hover thingy to subnote too

This commit is contained in:
Freeplay 2023-02-25 00:39:43 -05:00
parent 0f94a62198
commit de97032eab
3 changed files with 16 additions and 8 deletions

View file

@ -312,10 +312,14 @@ function readPromo() {
}
}
&:hover > .article > .main > .footer > .button {
opacity: 1;
& > .article > .main {
&:hover, &:focus-within {
:deep(.footer .button) {
opacity: 1;
}
}
}
> .reply-to {
& + .note-context {
.line::before {

View file

@ -135,6 +135,7 @@ function blur() {
width: max-content;
min-width: max-content;
pointer-events: all;
transition: opacity .2s;
&:first-of-type {
margin-left: -.5em;
}

View file

@ -136,11 +136,6 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
:deep(.footer) {
font-size: .9em;
}
> .main:hover {
:deep(.footer .button) {
opacity: 1;
}
}
}
> .reply, > .more {
margin-top: 10px;
@ -172,6 +167,14 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
}
}
&.reply, &.reply-to, &.reply-to-more {
> .main:hover, > .main:focus-within {
:deep(.footer .button) {
opacity: 1;
}
}
}
&.reply-to, &.reply-to-more {
padding-bottom: 0;
&:first-child {