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.
|
|
|
|
*/
|
|
|
|
|
2019-01-27 14:24:58 +00:00
|
|
|
window.dino-main .dino-header-right {
|
|
|
|
background: @theme_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-header-left {
|
|
|
|
background: @insensitive_bg_color;
|
|
|
|
}
|
|
|
|
|
2017-09-05 21:53:18 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-10-21 23:23:43 +00:00
|
|
|
window.dino-main .dino-conversation undershoot,
|
|
|
|
window.dino-main .dino-conversation viewport /* Some themes set this */ {
|
2018-04-24 12:59:28 +00:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:41:51 +00:00
|
|
|
@keyframes highlight {
|
|
|
|
from { background: alpha(@warning_color, 0.5) }
|
|
|
|
to { background: transparent }
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-conversation .highlight-once {
|
|
|
|
animation-duration: 3s;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
animation-name: highlight;
|
|
|
|
}
|
|
|
|
|
2019-06-01 14:00:21 +00:00
|
|
|
window.dino-main .dino-conversation .message-box:hover {
|
|
|
|
background: alpha(@theme_fg_color, 0.04);
|
|
|
|
}
|
|
|
|
|
2018-08-01 13:20:56 +00:00
|
|
|
window.dino-main .dino-sidebar > frame {
|
2018-07-04 21:38:28 +00:00
|
|
|
background: @insensitive_bg_color;
|
|
|
|
border-left: 1px solid @borders;
|
2018-07-29 21:24:53 +00:00
|
|
|
border-bottom: 1px solid @borders;
|
2018-07-04 21:38:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
.message-box {
|
|
|
|
transition: background .05s ease;
|
|
|
|
}
|
|
|
|
|
2020-04-03 20:49:59 +00:00
|
|
|
window.dino-main .dino-conversation .message-box.edit-mode {
|
|
|
|
background: alpha(@theme_selected_bg_color, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-conversation .message-box.edit-mode:hover {
|
|
|
|
background: alpha(@theme_selected_bg_color, 0.12);
|
|
|
|
}
|
|
|
|
|
2020-04-22 13:44:12 +00:00
|
|
|
window.dino-main .file-box-outer {
|
2019-07-18 00:03:42 +00:00
|
|
|
background: @theme_base_color;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid alpha(@theme_fg_color, 0.1);
|
|
|
|
}
|
|
|
|
|
2020-04-22 13:44:12 +00:00
|
|
|
window.dino-main .file-box {
|
2020-03-13 23:24:41 +00:00
|
|
|
margin: 12px 16px 12px 12px;
|
2019-07-18 00:03:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-01 13:20:56 +00:00
|
|
|
window.dino-main .dino-sidebar > frame.collapsed {
|
2018-07-04 21:38:28 +00:00
|
|
|
border-bottom: 1px solid @borders;
|
|
|
|
}
|
|
|
|
|
2018-08-01 13:20:56 +00:00
|
|
|
window.dino-main .dino-sidebar frame.auto-complete {
|
|
|
|
background: @theme_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-sidebar frame.auto-complete list > row {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2020-04-22 13:44:12 +00:00
|
|
|
window.dino-main .dino-white-overlay {
|
|
|
|
background: @theme_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dino-main .dino-file-overlay {
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid alpha(black, 0.2);
|
|
|
|
box-shadow: 0 2px 3px alpha(black, 0.1);
|
|
|
|
}
|
|
|
|
|
2017-09-05 21:53:18 +00:00
|
|
|
window.dino-main .dino-chatinput frame box {
|
2018-08-01 13:20:56 +00:00
|
|
|
background: transparent;
|
2017-09-05 21:53:18 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 01:15:12 +00:00
|
|
|
window.dino-main button.dino-attach-button {
|
|
|
|
min-width: 24px; /* Make button the same with as avatars */
|
|
|
|
}
|
|
|
|
|
2017-09-05 21:53:18 +00:00
|
|
|
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);
|
|
|
|
}
|
2019-08-02 01:15:12 +00:00
|
|
|
|
|
|
|
|
2020-04-03 20:49:59 +00:00
|
|
|
.dino-chatinput,
|
|
|
|
.dino-chatinput textview,
|
|
|
|
.dino-chatinput textview text {
|
2019-11-23 20:50:59 +00:00
|
|
|
background-color: @theme_base_color;
|
2019-08-02 01:15:12 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 20:50:59 +00:00
|
|
|
|
2019-08-02 01:15:12 +00:00
|
|
|
/*Chat input warning*/
|
|
|
|
|
|
|
|
box.dino-input-warning frame border {
|
|
|
|
border-color: @warning_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
box.dino-input-warning frame separator {
|
|
|
|
background-color: @warning_color;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
box.dino-input-warning label {
|
|
|
|
color: mix(@warning_color, @theme_fg_color, 0.5);
|
|
|
|
}
|
|
|
|
|
2019-11-23 20:50:59 +00:00
|
|
|
|
2019-08-02 01:15:12 +00:00
|
|
|
/*Chat input error*/
|
|
|
|
|
|
|
|
box.dino-input-error frame border {
|
|
|
|
border-color: @error_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
box.dino-input-error frame separator {
|
|
|
|
background-color: @error_color;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
box.dino-input-error label {
|
|
|
|
color: @error_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes input-error-highlight {
|
|
|
|
0% { color: mix(@error_color, @theme_fg_color, 0.3);}
|
|
|
|
30% { color: @error_color; text-shadow: 0px 0px 2px alpha(@error_color, 0.4); }
|
|
|
|
100% { color: mix(@error_color, @theme_fg_color, 0.3); }
|
|
|
|
}
|
|
|
|
|
|
|
|
box.dino-input-error label.input-status-highlight-once {
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
animation-name: input-error-highlight;
|
|
|
|
}
|