diff options
author | fiaxh <git@lightrise.org> | 2020-04-22 15:44:12 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-04-22 15:44:12 +0200 |
commit | 51a23728694a3f1312cc9396fc093ca178457c3c (patch) | |
tree | 321771ae3d807d19387a8656805a648d75347994 /main/data/theme.css | |
parent | 7c4260eed718961874fc0ea665263ea2ce59338b (diff) | |
download | dino-51a23728694a3f1312cc9396fc093ca178457c3c.tar.gz dino-51a23728694a3f1312cc9396fc093ca178457c3c.zip |
Add file upload preview
fixes #756
Diffstat (limited to 'main/data/theme.css')
-rw-r--r-- | main/data/theme.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/main/data/theme.css b/main/data/theme.css index 44b4b890..fb6e2b11 100644 --- a/main/data/theme.css +++ b/main/data/theme.css @@ -60,13 +60,13 @@ window.dino-main .dino-conversation .message-box.edit-mode:hover { background: alpha(@theme_selected_bg_color, 0.12); } -window.dino-main .dino-conversation .file-box-outer { +window.dino-main .file-box-outer { background: @theme_base_color; border-radius: 3px; border: 1px solid alpha(@theme_fg_color, 0.1); } -window.dino-main .dino-conversation .file-box { +window.dino-main .file-box { margin: 12px 16px 12px 12px; } @@ -82,6 +82,16 @@ window.dino-main .dino-sidebar frame.auto-complete list > row { transition: none; } +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); +} + window.dino-main .dino-chatinput frame box { background: transparent; } |