mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
749 B
38 lines
749 B
QPushButton#green |
|
{ |
|
background-color: transparent; |
|
background-image: url(":/ui/volButton/volButton.png"); |
|
background-repeat: none; |
|
border: none; |
|
width: 22px; |
|
height: 18px; |
|
} |
|
|
|
QPushButton#green:hover |
|
{ |
|
background-image: url(":/ui/volButton/volButtonHover.png"); |
|
} |
|
|
|
QPushButton#red |
|
{ |
|
background-color: transparent; |
|
background-image: url(":/ui/volButton/volButtonPressed.png"); |
|
background-repeat: none; |
|
border: none; |
|
width: 22px; |
|
height: 18px; |
|
} |
|
|
|
QPushButton#grey |
|
{ |
|
background-color: transparent; |
|
background-image: url(":/ui/volButton/volButtonDisabled.png"); |
|
background-repeat: none; |
|
border: none; |
|
width: 22px; |
|
height: 18px; |
|
} |
|
|
|
QPushButton:focus { |
|
outline: none; |
|
}
|
|
|