matsaman
matsaman
Yes, max-height and the other million things that are missing. The only thing more obnoxious than libraries like these are that they aren't even comprehensive, so you can't even waste...
...merge already?
Something like this could be a reliable CSS fix, no JS required: ``` .section > span[id]:first-child { padding-top: 38px; }```
I guess it would be more like this now, reflecting recent changes in the markup: `.section > span:first-child + span[id] { padding-top: 38px; }` But you get the idea. Can...
...and now it'd be more like this again... ` .section > span:first-child[id] { padding-top: 38px; }` 1. ~Why is this code so volatile?~ This code should not be so volatile....
Well, I would definitely like to be able to test it all so it's perfect, but after going through all the stuff in the README.rst and downloading _over a gigabyte_...
"restore", yes.
`NO_COLOR=foo pip install numpy --no-cache-dir` does disable the color, therefore it does appear to be Rich at issue as you've suspected. Ideally I'd say we'd want to control its color...