Hey there,
Ray Andrews via Users wrote:
(geany:4657): Geany-WARNING **: 11:23:04.479: Failed to load custom CSS: geany.css:44:22'' is not a valid color name
... God knows. line '44' is "background-color: "white";" ... so what's invalid about that is beyond me.
Blast. That's my fault. I'm sorry. There shouldn't be quotes around white, so the rule should be:
background-color: white;
However, as Lucas suggests:
/* Color of active TAB */ notebook tab:checked { border-color: blue; border-width: 5px; } ... is pretty much just what I want, the active tab stands out. Funny tho, there's still the thin, lighter blue bar at the bottom of the tab, but at least now the whole tab has a bold blue border.
Have you tried border-top-color instead of border-color?