I'm trying to change background color of QPushButton element when hovered. Also, I need to keep my formatting in the stylesheet, but could not do it together as it does not render in the GUI.
Here is what I want to keep (the START LISTENING button):
With the following stylesheet, I can attain changing background-color on hover, but rest of the formatting part does not work:
QPushButton::hover#start_stop_button
{
background-color: rgb(255, 255, 255);
}
border-color:rgb(60, 231, 195);
border-style:outset;color:lightgrey;border-width:2px;border-radius: 12px;padding: 6px;background-color: rgb(50, 50, 100);
This is what I get instead (when not hovered on START LISTENING button):
question from:
https://stackoverflow.com/questions/65832890/how-to-apply-hover-and-formatting-simultaneously-to-qpushbutton 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…