2017-09-05 21:53:18 +00:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
|
2018-04-24 12:59:28 +00:00
|
|
|
window.dino-main .dino-conversation {
|
|
|
|
background: @theme_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-conversation undershoot {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2018-07-04 21:38:28 +00:00
|
|
|
window.dino-main .dino-sidebar frame {
|
|
|
|
background: @insensitive_bg_color;
|
|
|
|
border-left: 1px solid @borders;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-sidebar frame.collapsed {
|
|
|
|
border-bottom: 1px solid @borders;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-05 21:53:18 +00:00
|
|
|
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);
|
|
|
|
}
|