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.
63 lines
855 B
63 lines
855 B
QAbstractButton |
|
{ |
|
background-image: url(":/ui/videoButton/videoButton.svg"); |
|
background-repeat: none; |
|
background-position: center; |
|
border: none; |
|
border-radius: 5px; |
|
} |
|
|
|
QAbstractButton:disabled |
|
{ |
|
background-color: #919191; |
|
} |
|
|
|
QAbstractButton:focus |
|
{ |
|
outline: none; |
|
} |
|
|
|
QAbstractButton#green |
|
{ |
|
background-color: #6bc260; |
|
} |
|
|
|
QAbstractButton#green:hover |
|
{ |
|
background-color: #79c76f; |
|
} |
|
|
|
QAbstractButton#green:pressed |
|
{ |
|
background-color: #51b244; |
|
} |
|
|
|
QAbstractButton#red |
|
{ |
|
background-color: #c84e4e; |
|
} |
|
|
|
QAbstractButton#red:hover |
|
{ |
|
background-color: #e87474; |
|
} |
|
|
|
QAbstractButton#red:pressed |
|
{ |
|
background-color: #df3b3b; |
|
} |
|
|
|
QAbstractButton#yellow |
|
{ |
|
background-color: #e6e465; |
|
} |
|
|
|
QAbstractButton#yellow:hover |
|
{ |
|
background-color: #e8e774; |
|
} |
|
|
|
QAbstractButton#yellow:pressed |
|
{ |
|
background-color: #e3e155; |
|
}
|
|
|