2017-11-16 06:17:39 +08:00
|
|
|
/* Message edit */
|
|
|
|
|
|
|
|
QAbstractButton#emoteButton
|
|
|
|
{
|
|
|
|
background-image: url(":/ui/chatForm/emoteButton.svg");
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#fileButton
|
|
|
|
{
|
|
|
|
background-image: url(":/ui/chatForm/fileButton.svg");
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#screenshotButton
|
|
|
|
{
|
|
|
|
background-image: url(":/ui/chatForm/screenshotButton.svg");
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#sendButton
|
|
|
|
{
|
|
|
|
background-image: url(":/ui/chatForm/sendButton.svg");
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
|
2017-10-28 18:50:30 +08:00
|
|
|
QAbstractButton#volButton
|
|
|
|
{
|
2017-11-16 06:17:39 +08:00
|
|
|
border-image: url(":/ui/chatForm/volButton.svg");
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 22px;
|
|
|
|
height: 18px;
|
2017-10-28 18:50:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#micButton
|
|
|
|
{
|
2017-11-16 06:17:39 +08:00
|
|
|
border-image: url(":/ui/chatForm/micButton.svg");
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 22px;
|
|
|
|
height: 18px;
|
2017-10-28 18:50:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#videoButton
|
|
|
|
{
|
2017-11-16 05:19:09 +08:00
|
|
|
background-image: url(":/ui/chatForm/videoButton.svg");
|
2017-11-16 06:17:39 +08:00
|
|
|
border-radius: 5px;
|
|
|
|
width: 50px;
|
|
|
|
height: 40px;
|
2017-10-28 18:50:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractButton#callButton
|
|
|
|
{
|
2017-11-16 05:19:09 +08:00
|
|
|
background-image: url(":/ui/chatForm/callButton.svg");
|
2017-11-16 06:17:39 +08:00
|
|
|
border-radius: 5px;
|
|
|
|
width: 50px;
|
|
|
|
height: 40px;
|
2017-10-28 18:50:30 +08:00
|
|
|
}
|
|
|
|
|
2017-11-16 06:17:39 +08:00
|
|
|
/* Common */
|
|
|
|
|
2017-10-28 18:50:30 +08:00
|
|
|
QAbstractButton
|
|
|
|
{
|
|
|
|
background-repeat: none;
|
|
|
|
background-position: center;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|