blob: d2723d5459b39c55f6c84fa515ac257d09c5e847 (
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
37
38
39
40
41
42
43
44
45
|
/**
* This theme file is applied after the operating system theme
* It provides sane defaults for things that are very Dino-specific.
*/
window.dino-main headerbar.dino-left label.title {
opacity: 0;
font-size: 0;
color: transparent;
}
window.dino-main .dino-chatinput frame box {
background: @theme_base_color;
}
window.dino-main .dino-chatinput frame box:backdrop {
background: @theme_unfocused_base_color;
}
window.dino-main button.dino-chatinput-button {
border: none;
background: transparent;
box-shadow: none;
min-height: 0;
padding: 7px 5px;
color: alpha(@theme_fg_color, 0.6);
outline: none;
}
window.dino-main button.dino-chatinput-button:hover {
color: @theme_selected_bg_color;
}
window.dino-main button.dino-chatinput-button:backdrop {
color: alpha(@theme_unfocused_fg_color, 0.6);
}
window.dino-main button.dino-chatinput-button:active,
window.dino-main button.dino-chatinput-button:checked {
color: alpha(@theme_selected_bg_color, 0.8);
}
window.dino-main button.dino-chatinput-button:checked:backdrop {
color: alpha(@theme_unfocused_selected_bg_color, 0.8);
}
|