blob: d50650622fdc6213a40a447edd077ad346aa628a (
plain) (
blame)
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
|
.window-frame, .window-frame:backdrop {
box-shadow: 0 0 0 black;
border-style: none;
margin: 0;
border-radius: 0;
}
.titlebar {
border-radius: 0;
}
.window-frame.csd.popup {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13);
}
.header-bar {
background-image: none;
background-color: #ededed;
box-shadow: none;
}
headerbar .title {
opacity: 0;
}
/* Always use background color */
window {
background-color: @theme_bg_color;
}
/* Fix tooltip background override */
.tooltip {
background-color: rgba(0, 0, 0, 0.8);
}
.tooltip * {
background-color: transparent;
}
|