summaryrefslogtreecommitdiffstats
path: root/tests/baseline/stylesheet/qss/qtoolbutton/styled_no_border.qss
blob: 7cb753120f8cfd031aa14646d96b2d20959f0208 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
QToolButton {
    border: none
}

QToolButton::menu-button {
    border: 2px solid gray;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    /* 16px width + 4px for border = 20px allocated above */
    width: 16px;
}

QToolButton::menu-indicator {
    image: url(:/icons/arrow-up.png);
    width: 16px;
    height: 16px;
    subcontrol-position: right bottom;
}

QToolButton::menu-arrow {
    subcontrol-position: bottom right;
    image: url(:/icons/arrow-up.png);
}
QToolButton::down-arrow {
    image: url(:/icons/arrow-up.png);
    background-color: blue
}
QToolButton::up-arrow {
    image: url(:/icons/arrow-up.png);
    background-color: green
}
QToolButton::left-arrow {
    image: url(:/icons/arrow-up.png);
    background-color: red
}
QToolButton::right-arrow {
    image: url(:/icons/arrow-up.png);
    background-color: cyan;
    width: 15px;
    height: 15px;
    subcontrol-position: right bottom;
}