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