Posts
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.
Oh, so that's why PC HPET runs at that frequency
(from https://en.wikipedia.org/wiki/Color_burst)
“The way they handled it was heartless.”
https://time.com/article/2026/04/30/oracle-layoffs-ai-tech-jobs/
My take on HTML templating: https://codeberg.org/amonakov/fml.py
(my Python is cringe probably, please be gentle)