File: sendButton.qss

package info (click to toggle)
qtox 1.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,996 kB
  • sloc: cpp: 48,067; xml: 8,560; python: 704; sh: 232; makefile: 14
file content (26 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
QPushButton
{
    background-color: #6bc260;
    background-image: url("@getImagePath(sendButton/sendButton.svg)");
    background-repeat: none;
    background-position: center;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
}

QPushButton:hover
{
    background-color: #79c76f;
}

QPushButton:pressed
{
    background-color: #51b244;
}

QPushButton:focus
{
    outline: none;
}