diff options
author | fiaxh <git@lightrise.org> | 2021-08-14 20:22:52 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-08-17 22:32:33 +0200 |
commit | 447464f4d1ac0c184764f103ac9e51f7ff2dce91 (patch) | |
tree | df4aab32001564c5aa706500ce6e7d68904e2d47 /main/data/theme.css | |
parent | cf8501ba30e26bbc02b42204acf5cff650b338f4 (diff) | |
download | dino-447464f4d1ac0c184764f103ac9e51f7ff2dce91.tar.gz dino-447464f4d1ac0c184764f103ac9e51f7ff2dce91.zip |
Display message delivery error, color text using theme colors
fixes #672
Diffstat (limited to 'main/data/theme.css')
-rw-r--r-- | main/data/theme.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/main/data/theme.css b/main/data/theme.css index 454bd2c1..cf57ae96 100644 --- a/main/data/theme.css +++ b/main/data/theme.css @@ -86,6 +86,14 @@ window.dino-main .dino-conversation .message-box.edit-mode:hover { background: alpha(@theme_selected_bg_color, 0.12); } +window.dino-main .dino-conversation .message-box.error { + background: alpha(@error_color, 0.1); +} + +window.dino-main .dino-conversation .message-box.error:hover { + background: alpha(@error_color, 0.12); +} + window.dino-main .file-box-outer, window.dino-main .call-box-outer { background: @theme_base_color; |