Hard to see which option is selected
On a Hi-Res display it's a bit hard to see which option is selected. I have no suggestion of how to improve that, but I usually need to look closer, stare and move up and down to notice where the selection is.
You can edit the css?
button:focus {
}
or
button:hover {
}
Should do the trick.
I'm not sure I know how to do that :-) Where should I put it in the file? Just drop it at the bottom?
Sure yeah.
Been a while, Did it work?
Hi, I don't remember what I tried exactly but I tried a few things and they changed nothing.
p.s. since then I've had some GitHub jobs done and I think you should convert this into a discussion. Enable discussions on this repo and press convert to discussion or something like that which will appear somewhere in the right in the issue.
Any specific reason to enable discussions? This is a simple issue? Shouldn't get dragged too long?
To me it looks more like a support request and not an issue, that's why I'm suggesting it.
Ah, No it's fine to use issues for this, Helps me try and keep track of things. I will consider enabling discussions later though. That being said i advise you look into how gtk css is handled as this seems to work just fine on my end unless you're experiencing a visual glitch?
I'm completely ignorant of CSS, I don't know it, don't understand it. I'm not sure I understand the following:
You can edit the css?
button:focus { }or
button:hover { }Should do the trick.
If by edit you mean I should know what to put inside the brackets, I certainly don't.
Oh.. Well You could do something like:
button:hover {
background: red;
}
or
button:hover {
border: 1px solid red;
}
OK, this works, but as I found by accident, only when I hover with the mouse. I use the keyboard arrows. When I first press the key combination, all boxes are un-selected. When I press up or down a very faint blue frame appears around, usually the second box as I expect the default selection to be the topmost box. The background doesn't change. I don't remember what I did back in May but it may very well have changed something that didn't show up.
OK, I was able to alter the frame width and color like that:
button:focus {
border: 5px solid cyan;
}