I’ve customized the text color, the dialog choice color, the dialog choice hover color, but the numbers themselves appear to be controlled by a separate bit of CSS that I can’t find anything about.
Logs or screenshots of the issue:
I’ve customized the text color, the dialog choice color, the dialog choice hover color, but the numbers themselves appear to be controlled by a separate bit of CSS that I can’t find anything about.
Logs or screenshots of the issue:
If you look in the browser inspector, the number is in its own span tag which has the choice-index
class, so you can style it with css
Just add something like
.choice-index {
color: red;
}
In your css file
Somehow assumed the inspector would not provide me the answer when it’s literally saved me multiple times. Thanks!
Yeah, the feature to give CSS to those elements in the config was an early feature from back before I decided that it was easier to simply let people write custom CSS to customise the UI.
Nowadays it’s easier to just do that for most things really