aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/switch.css
blob: 80bd9f04e568c3395c6563cb69c8ad40cfecead3 (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
43
44
45
46
47
48
49
50
QPushButton {
    border-image: none;
    min-width: 40px;
    min-height: 20px;
    margin: 0px 0 0px 0;
    border: 1px solid #0F0F0F;
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #3c3c3c, stop: 1 #444444);

    color: #EEEEEE;
    font: bold;
	font-size: 11px;
}

QPushButton:hover {
    /*border: none;  no border for a flat push button */

    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #3c3c3c, stop: 1 #666666);
}

QPushButton::checked
{
    border: none; /* no border for a flat push button */
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #EFEFEF, stop: 1 #EEEEEE);
    color: #3c3c3c;
}

QPushButton::checked :hover
{
    border: none; /* no border for a flat push button */
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #FFFFFF, stop: 1 #FEFEFE);
}


QPushButton:pressed {
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #3f3f3f, stop: 1 #3f3f3f);
}

QPushButton:flat {
    border: none; /* no border for a flat push button */
}

QPushButton:default {
    background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
    stop: 0 #2c2c2c, stop: 1 #333333);
}