blob: f8c6f1bb2366eea7c1db55ee68a6d7699db3b858 (
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
|
QToolTip{
background: rgb(240,240,240);
border: 1px solid transparent;
padding: 1px;
color: black;
}
QMenu {
background-color: rgb(240,240,240);
border: 1px solid transparent;
margin: 2px; /* some spacing around the menu */
}
QMenu::item {
padding-left: 27px;
padding-right: 15px;
padding-top: 2px;
padding-bottom: 2px;
border: 1px solid transparent; /* reserve space for selection border */
}
QMenu::item:selected {
border: 1px solid black;
border-radius: 3px;
background: rgba(130, 130, 130, 150);
}
QMenu::indicator{
width: 22px;
height: 22px;
}
QMenu::icon{
width: 22px;
height: 22px;
}
QWidget{
font-family: "DejaVu Sans";
font-size: 13px;
font-weight: 300;
font-style: normal;
color: black;
}
|