-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotantiq.css
51 lines (49 loc) · 1.29 KB
/
notantiq.css
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
QTabBar::tab:selected {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #0096DB, stop: 1 #113f93);
color: white;
font-size: 10px;
}
QTabBar::tab {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #113f93, stop: 1 #0096db);
color: lightGray;
padding: 6px;
font-size: 10px;
}
QTabWidget::pane {
border: 0;
font-size: 10px;
}
QDockWidget::title { /* headings of dock widgets */
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #113f93, stop: 1 #0096db);
color: white;
text-align: center;
font-size: 10px;
}
QDockWidget {
background-color: rgb(255, 255, 255);
color: black;
font-size: 10px;
}
QToolButton { /* all types of tool button */
border: 2px solid #8f8f91;
border-radius: 6px;
padding: 3px;
color: white;
font-size: 10px;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #0096db, stop: 1 #113f93);
}
QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
font-size: 10px;
padding-right: 20px; /* make way for the popup button */
}
QToolButton:pressed {
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #113f93, stop: 1 #0096DB);
color: white;
padding: 6px;
font-size: 10px;
}