aboutsummaryrefslogtreecommitdiff
path: root/main/data/theme.css
blob: 856e1b27f0bc8ebbbde866bb11b2ef12c1831a31 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
 * This theme file is applied after the operating system theme
 * It provides sane defaults for things that are very Dino-specific.
 */

window.dino-main .dino-header-right {
    background: @theme_base_color;
}

window.dino-main .dino-header-left {
    background: @insensitive_bg_color;
}

window.dino-main headerbar.dino-left label.title {
    opacity: 0;
    font-size: 0;
    color: transparent;
}

window.dino-main .dino-conversation {
    background: @theme_base_color;
}

window.dino-main .dino-conversation undershoot,
window.dino-main .dino-conversation viewport /* Some themes set this */ {
    background: none;
}

@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;
}

window.dino-main .dino-conversation .message-box:hover {
    background: alpha(@theme_fg_color, 0.04);
}

window.dino-main .dino-sidebar > frame {
    background: @insensitive_bg_color;
    border-left: 1px solid @borders;
    border-bottom: 1px solid @borders;
}

.message-box {
    transition: background .05s ease;
}

.file-box-outer {
    background: @theme_base_color;
    border-radius: 3px;
    border: 1px solid alpha(@theme_fg_color, 0.1);
}

.file-box {
    margin: 12px;
}

window.dino-main .dino-sidebar > frame.collapsed {
    border-bottom: 1px solid @borders;
}

window.dino-main .dino-sidebar frame.auto-complete {
    background: @theme_base_color;
}

window.dino-main .dino-sidebar frame.auto-complete list > row {
    transition: none;
}

window.dino-main .dino-chatinput frame box {
    background: transparent;
}

window.dino-main button.dino-attach-button {
    min-width: 24px; /* Make button the same with as avatars */
}

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);
}


.dino-chatinput textview, .dino-chatinput textview text {
    background-color: @theme_base_color;
}


/*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);
}


/*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;
}