forked from amorilia/nifskope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
62 lines (51 loc) · 928 Bytes
/
style.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
/*
Stylish tooltips
*/
QToolTip
{
opacity: 223;
color: steelblue;
border: 1px solid steelblue;
border-radius: 5px;
padding: 4px;
background: ghostwhite;
}
/*
Make the disabled rows of the table views more distinguishable
*/
QTreeView
{
background: white;
alternate-background-color: #F1F5FA;
selection-background-color: #3D80DF;
selection-color: white;
color: black;
}
QTreeView:disabled
{
background: #C0C0C0;
alternate-background-color: #C0C0C0;
color: #7D7D7D;
}
/*
Give the fileselectors a green tint on success and a red one on error
*/
FileSelector[state="0"] > QLineEdit
{
background-color: auto;
}
FileSelector[state="1"] > QLineEdit
{
background-color: #cfc;
}
FileSelector[state="2"] > QLineEdit
{
background-color: #fcc;
}
/*
Add a border to the FloatSliderEditBoxes
*/
FloatSliderEditBox
{
border: 1px solid black;
}