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

added stylesheets for micButton and volButton

This commit is contained in:
midnight079 2014-08-13 19:03:32 +04:00 committed by Tux3 / Mlkj / !Lev.uXFMLA
parent a75666a072
commit fdfbd9b162
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,34 @@
QPushButton#green
{
background-color: transparent;
background-image: url(":/micButton/micButton.css");
background-repeat: none;
border: none;
width: 25px;
height: 20px;
}
QPushButton#green:hover
{
background-image:url(":/ui/micButton/micButtonHover.png");
}
QPushButton#red
{
background-color: transparent;
background-image: url(":/ui/micButton/micButtonPressed.png");
background-repeat: none;
border: none;
width: 25px;
height: 20px;
}
QPushButton#grey
{
background-color: transparent;
background-image: url(":/ui/callButton/callButtonDisabled.png");
background-repeat: none;
border: none;
width: 25px;
height: 20px;
}

View File

@ -0,0 +1,20 @@
QPushButton#green
{
background-color: transparent;
background-image: url(":/ui/volButton/volButton.png");
background-repeat: none;
border: none;
width: 25px;
height: 20px;
}
QPushButton#green:hover
{
background-image: url(":/ui/volButton/volButtonHover.png");
}
QPushButton#green:pressed
{
background-image: url(":/ui/volButton/volButtonPressed.png");
}