summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/resources/stylesheet.css
blob: b660897c29a0084954299506b60a9c6c13d06566 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
QFrame {
   border: 2px;
   background-color: #707070;
}

QLabel {
    border: none;
    border-image: none;
    padding: 0;
    background: none;
    color: #E1E1E1;
}

QScrollArea {
     border: 0px;
     background-color: #707070;
}

QStackedWidget {
     border: 0px;
     background-color: #707070;
}


QGraphicsView {
     border: 0px;
     background-color: #707070;
}

QTabWidget {
     border: 0px;
     background-color: #707070;
}

QTabWidget::pane { /* The tab widget frame */
     border: 0px;
     background-color: #707070;
}

QLineEdit
{
     border: 2px solid #8F8F8F;
     border-radius: 4px;
     padding: 0 8px;
     background-color: white;
     selection-background-color: darkgray;
}
 
 QTreeView {
    color: white;
    selection-color: white
 }
 
 QTreeView::item:selected {
     color: white;
 }
 
 QListView {
    color: white;
    selection-color: white
 }
 
 QListView::item:selected {
     color: white;
 }

QComboBox QAbstractItemView {
     color: black;
     border: 2px solid darkgray;
     selection-background-color: lightgray;
 }