forked from alesapin/LSPL-IDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.qss
69 lines (69 loc) · 1.81 KB
/
stylesheet.qss
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
QDockWidget > QWidget {
border: 1px solid #8b8989;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-style: none;
}
QDockWidget::title > QWidget{
position: relative;
padding-left: 50px;
text-align: left center;
}
QLabel[class=dockHeader] {
border: 1px solid #8b8989;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 2px;
background : qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BEE9F7, stop: 1 #99c1ff);
}
QToolTip
{
color: #ffffff;
background-color: #696969;
border: 1px solid white;
}
QTreeView {
show-decoration-selected: 1;
}
QTreeView::item:selected:active{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #cbcc00, stop: 1 #989900);
}
QTreeView::item {
border: 1px solid #d9d9d9;
}
QToolBar {
spacing: 10px; /* spacing between items in the tool bar */
padding: 5px;
}
QTableView::item
{
border: 0px;
padding: 5px;
}
QPushButton {
padding: 5px;
border: 1px solid #8b8989;
border-radius: 2px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #F5E4D3, stop: 1 #F0BF8D);
color: #4A4641;
}
QPushButton:pressed {
border: 2px solid #8b8989;
border-radius: 2px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #F5E4D3, stop: 1 #F0BF8D);
}
QPushButton:hover:!pressed {
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #F7EBDF, stop: 1 #F5CCA4);
}
QPushButton:disabled {
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #B7C1C4, stop: 1 #9EA9AD);
}
/*QProgressBar {
border: 1px solid #8b8989;
border-radius: 4px;
text-align: center;
}*/
/*QListView::item {
border: 1px solid red;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #99ff33, stop: 1 #408000);
}*/