]> git.sur5r.net Git - minitube/blob - style.css
d6651f6077ef7c977ceed95a45a305e8f54bbb41
[minitube] / style.css
1 QMainWindow > QToolBar QToolButton::menu-indicator { image: none; }
2
3 QStatusBar QToolBar {
4     padding:0;
5     spacing:0;
6     margin:0;
7     border:0;
8 }
9
10 QStatusBar::item {
11     border:0;
12 }
13
14 QStatusBar QToolButton::menu-indicator {
15     image: none;
16 }
17
18 AppsWidget {
19     background-color: palette(window);
20     border-top: 1px solid #808080;
21 }
22
23 RegionsView QPushButton[regionId] {
24     margin: 5px;
25     padding: 7px 10px;
26     text-align: left;
27     vertical-align: middle;
28     background-color: transparent;
29     border-radius: 3px;
30 }
31
32 RegionsView QPushButton[regionId=""] {
33
34 }
35
36 RegionsView QPushButton[regionId]:hover {
37     background: rgba(0,0,0,16);
38 }
39
40 RegionsView QPushButton[regionId]:focus {
41     background: palette(highlight);
42     color: palette(highlightText);
43     outline: 0;
44 }
45
46 RegionsView QPushButton[regionId]:checked {
47     background: rgba(0,0,0,32)
48 }
49
50 SidebarHeader {
51     background: #3c3c3c;
52     padding: 0;
53     margin: 0;
54     spacing: 0;
55     border: 0;
56 }
57
58 SidebarHeader QToolButton {
59     border: 0;
60     padding: 0;
61     margin: 0;
62     spacing: 0;
63     height: 20;
64     width: 24;
65 }
66
67 SidebarHeader QPushButton {
68     background: transparent;
69     color: #fff;
70     text-align: center;
71 }
72
73 SidebarHeader QComboBox::drop-down {
74     width: 0;
75     border-style: none;
76 }
77
78 SearchView QLabel[recentHeader="true"] {
79     margin-left: -3px;
80     margin-bottom: 4px;
81     padding: 0;
82 }
83
84 SearchView QPushButton[recentItem="true"] {
85     border: 0;
86     padding: 4px;
87     text-align: left;
88     outline: 0;
89 }
90
91 SearchView QPushButton[recentItem="true"]:hover {
92     background: rgba(0,0,0,16);
93 }
94
95 SearchView QPushButton[recentItem="true"]:pressed {
96     background: palette(highlight);
97     color: white; /* SHOULD BE color: palette(highlightText); */
98 }
99
100 SearchView QPushButton[recentItem="true"]:focus {
101     outline: 1px solid palette(highlight);
102     outline-offset: 4px;
103 }