I'm not sure if this is the best place for this thread, but it's the best I could come up with. I'm using a QT Style Sheet to style a radio button like this:
QRadioButton{
background:#5F7536;
color:#CBF57D;
font:bold;
}
It works fine except that in addition to changing the color of the text to #CBF57D, it also changes the color of the indicator to #CBF57D. I don't want this. I want the indicator to stay black as if I hadn't styled the indicator at all. Does anyone know how to do this? I tried this, but it didn't work:
QRadioButton::indicator{
color:black;
}
Neither did:
QRadioButton::indicator{
background:black;
}
Anyone have any ideas?