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.
83 lines
1.4 KiB
83 lines
1.4 KiB
QPushButton#green |
|
{ |
|
background-color: #6bc260; |
|
background-image: url(":/ui/callButton/callButton.svg"); |
|
background-repeat: none; |
|
background-position: center; |
|
border: none; |
|
border-radius: 5px; |
|
width: 50px; |
|
height: 40px; |
|
} |
|
|
|
QPushButton#green:hover |
|
{ |
|
background-color: #79c76f; |
|
} |
|
|
|
QPushButton#green:pressed |
|
{ |
|
background-color: #51b244; |
|
} |
|
|
|
QPushButton#red |
|
{ |
|
background-color: #c84e4e; |
|
background-image: url(":/ui/callButton/callButton.svg"); |
|
background-repeat: none; |
|
background-position: center; |
|
border: none; |
|
border-radius: 5px; |
|
width: 50px; |
|
height: 40px; |
|
} |
|
|
|
QPushButton#red:hover |
|
{ |
|
background-color: #e87474; |
|
} |
|
|
|
QPushButton#red:pressed |
|
{ |
|
background-color: #df3b3b; |
|
} |
|
|
|
QPushButton#yellow |
|
{ |
|
background-color: #e6e465; |
|
background-image: url(":/ui/callButton/callButton.svg"); |
|
background-repeat: none; |
|
background-position: center; |
|
border: none; |
|
border-radius: 5px; |
|
width: 50px; |
|
height: 40px; |
|
} |
|
|
|
QPushButton#yellow:hover |
|
{ |
|
background-color: #e8e774; |
|
} |
|
|
|
QPushButton#yellow:pressed |
|
{ |
|
background-color: #e3e155; |
|
} |
|
|
|
QPushButton#grey |
|
{ |
|
background-color: #919191; |
|
background-image: url(":/ui/callButton/callButton.svg"); |
|
background-repeat: none; |
|
background-position: center; |
|
border: none; |
|
border-radius: 5px; |
|
width: 50px; |
|
height: 40px; |
|
} |
|
|
|
QPushButton:focus |
|
{ |
|
outline: none; |
|
} |
|
|
|
|