mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
5eb3179f1e
Should help with #15 and make urras happy
72 lines
1.5 KiB
CSS
72 lines
1.5 KiB
CSS
QPushButton#green
|
|
{
|
|
background-color: transparent;
|
|
background-image: url(":/ui/videoButton/videoButton.png");
|
|
background-repeat: none;
|
|
border: none;
|
|
width: 50px;
|
|
height: 40px;
|
|
}
|
|
|
|
QPushButton#green:hover
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonHover.png");
|
|
}
|
|
|
|
QPushButton#green:pressed
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonPressed.png");
|
|
}
|
|
|
|
QPushButton#red
|
|
{
|
|
background-color: transparent;
|
|
background-image: url(":/ui/videoButton/videoButtonRed.png");
|
|
background-repeat: none;
|
|
border: none;
|
|
width: 50px;
|
|
height: 40px;
|
|
}
|
|
QPushButton#red:hover
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonRedHover.png");
|
|
}
|
|
|
|
QPushButton#red:pressed
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonRedPressed.png");
|
|
}
|
|
|
|
QPushButton#yellow
|
|
{
|
|
background-color: transparent;
|
|
background-image: url(":/ui/videoButton/videoButtonYellow.png");
|
|
background-repeat: none;
|
|
border: none;
|
|
width: 50px;
|
|
height: 40px;
|
|
}
|
|
QPushButton#yellow:hover
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonYellowHover.png");
|
|
}
|
|
|
|
QPushButton#yellow:pressed
|
|
{
|
|
background-image: url(":/ui/videoButton/videoButtonYellowPressed.png");
|
|
}
|
|
|
|
QPushButton#grey
|
|
{
|
|
background-color: transparent;
|
|
background-image: url(":/ui/videoButton/videoButtonDisabled.png");
|
|
background-repeat: none;
|
|
border: none;
|
|
width: 50px;
|
|
height: 40px;
|
|
}
|
|
|
|
QPushButton:focus {
|
|
outline: none;
|
|
}
|