1#frame {
2  border: 1px solid palette(mid);
3  border-radius: 5px;
4}
5
6#container {
7  margin: 2px;
8}
9
10#remove {
11  border-top-left-radius: 0px;
12  border-top-right-radius: 5px;
13  border-bottom-left-radius: 0px;
14  border-bottom-right-radius: 5px;
15  border: 0px solid transparent;
16  background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
17    stop:0   %light,
18    stop:0.4 %light,
19    stop:0.6 %dark,
20    stop:1   %dark);
21
22  margin-left: 5px;
23  padding: 0px 5px;
24}
25
26#remove:hover {
27  background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
28    stop:0   %light2,
29    stop:0.4 %light2,
30    stop:0.6 %base,
31    stop:1   %base);
32  border: 0px solid transparent;
33}
34
35#remove:pressed {
36  background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
37    stop:0   %base,
38    stop:0.4 %base,
39    stop:0.6 %light2,
40    stop:1   %light2);
41  border: 0px solid transparent;
42}
43
44