-
Notifications
You must be signed in to change notification settings - Fork 129
/
stylesheet.qss.in
43 lines (37 loc) · 1022 Bytes
/
stylesheet.qss.in
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
/**
* BRANCHLESS QTREEVIEW STYLESHEET
* -------------------------------
*/
/**
* We disable all the border images for the branch indicators, while
* keeping the images for the branch closed/open and hover variants
* the default.
*/
QTreeView[objectName="branchless"]::branch:has-siblings
{
border-image: none;
image: none;
}
QTreeView[objectName="branchless"]::branch:!has-siblings
{
border-image: none;
image: none;
}
QTreeView[objectName="branchless"]::branch:has-siblings:adjoins-item
{
border-image: none;
}
QTreeView[objectName="branchless"]::branch:!has-children:!has-siblings:adjoins-item
{
border-image: none;
}
QTreeView[objectName="branchless"]::branch:has-children:!has-siblings:closed,
QTreeView[objectName="branchless"]::branch:open:has-children:!has-siblings
{
border-image: none;
}
QTreeView[objectName="branchless"]::branch:closed:has-children:has-siblings,
QTreeView[objectName="branchless"]::branch:open:has-children:has-siblings
{
border-image: none;
}