@amonakov@mastodon.gamedev.place
Post #2690513
2026-05-17 19:47 UTC
In CSS, is there a crime^Wway to unset max-height if the element was "focused" somehow? I'm looking at collapsing quote blocks in public-inbox. I can do
.q {
display: inline-block;
max-height: 9em;
overflow-y: auto;
resize: vertical;
}
.q[style*=height] {
max-height: unset;
}
which collapses blocks, and lets me resize them. But if I add
.q:active {
max-height: unset;
}
that's not useful, because the block is expanded only as long as the mouse button is pressed, and :focus doesn't work.
Replies (0)
No replies.