-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.qss
More file actions
55 lines (45 loc) · 1.57 KB
/
estilo.qss
File metadata and controls
55 lines (45 loc) · 1.57 KB
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
QMenuBar {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 lightgray, stop:1 darkgray);
min-height: 40px;
/*background-color:red;*/
}
QMenuBar::item {
spacing: 3px; /* spacing between menu bar items */
padding: 1px 4px;
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 lightgray, stop:1 darkgray);
border-radius: 4px;
}
QMenuBar::item:selected { /* when selected using mouse or keyboard */
background: #a8a8a8;
}
QMenuBar::item:pressed {
background: #888888;
}
QToolBar {
background: red;
spacing: 3px; /* spacing between items in the tool bar */
}
QToolBox::tab {
background: lightgray;
/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);*/
border-radius: 5px;
color: darkgray;
}
QMenu::item {
/* sets background of menu item. set this to something non-transparent
if you want menu color and menu item color to be different */
background-color: transparent;
}
QMenu::item:selected { /* when user selects item using mouse or keyboard */
background-color: lightgray;
}
QHeaderView::section {
color: black;
background: qlineargradient(x1:0, y1:0, x2:1, y2:1,
stop:0 #eaedf2, stop: 0.4 lightgray, stop:1 #d7dbe2);
border-width: 1px;
border-style: solid;
border-color: #bbc1cc;
}