1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/ui/callButton/callButton.css

84 lines
1.4 KiB
CSS
Raw Normal View History

2014-06-28 13:14:38 +08:00
QPushButton#green
{
background-color: #6bc260;
background-image: url(":/ui/callButton/callButton.svg");
background-repeat: none;
background-position: center;
2014-06-28 13:14:38 +08:00
border: none;
border-radius: 5px;
2014-06-28 13:14:38 +08:00
width: 50px;
height: 40px;
}
QPushButton#green:hover
{
background-color: #79c76f;
2014-06-28 13:14:38 +08:00
}
QPushButton#green:pressed
{
background-color: #51b244;
2014-06-28 13:14:38 +08:00
}
QPushButton#red
{
background-color: #c84e4e;
background-image: url(":/ui/callButton/callButton.svg");
background-repeat: none;
background-position: center;
2014-06-28 13:14:38 +08:00
border: none;
border-radius: 5px;
2014-06-28 13:14:38 +08:00
width: 50px;
height: 40px;
}
2014-06-28 13:14:38 +08:00
QPushButton#red:hover
{
background-color: #e87474;
2014-06-28 13:14:38 +08:00
}
QPushButton#red:pressed
{
background-color: #df3b3b;
2014-06-28 13:14:38 +08:00
}
QPushButton#yellow
{
background-color: #e6e465;
background-image: url(":/ui/callButton/callButton.svg");
background-repeat: none;
background-position: center;
2014-06-28 13:14:38 +08:00
border: none;
border-radius: 5px;
2014-06-28 13:14:38 +08:00
width: 50px;
height: 40px;
}
2014-06-28 13:14:38 +08:00
QPushButton#yellow:hover
{
background-color: #e8e774;
2014-06-28 13:14:38 +08:00
}
QPushButton#yellow:pressed
{
background-color: #e3e155;
2014-06-28 13:14:38 +08:00
}
QPushButton#grey
{
background-color: #919191;
background-image: url(":/ui/callButton/callButton.svg");
background-repeat: none;
background-position: center;
2014-06-28 13:14:38 +08:00
border: none;
border-radius: 5px;
2014-06-28 13:14:38 +08:00
width: 50px;
height: 40px;
}
QPushButton:focus
{
outline: none;
}