diff options
author | fiaxh <git@lightrise.org> | 2022-01-09 14:28:17 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-01-09 15:30:13 +0100 |
commit | c5461b8536b6171aea17d0e97d41710988b73534 (patch) | |
tree | 3522951dff680be85411b13cd31dc88c5a89cd6a /main/data/theme.css | |
parent | 25db512297781ea9e4a01c6e6719cb7e43db6db4 (diff) | |
download | dino-c5461b8536b6171aea17d0e97d41710988b73534.tar.gz dino-c5461b8536b6171aea17d0e97d41710988b73534.zip |
Imrove file widget menu (fixup 25db512)
- Fix file menu remaining visible after clicking an action
- Fix file menu for images (clicking resulted in hiding of the file widget part)
- Fix styling of file menus for images
- Fix compiler warnings and runtime criticals
Diffstat (limited to 'main/data/theme.css')
-rw-r--r-- | main/data/theme.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/main/data/theme.css b/main/data/theme.css index d581cac2..b8def4e1 100644 --- a/main/data/theme.css +++ b/main/data/theme.css @@ -111,6 +111,27 @@ window.dino-main .call-box { margin: 12px 16px 12px 12px; } +window.dino-main .file-image-widget { + border: 1px solid alpha(@theme_fg_color, 0.1); + border-radius: 3px; +} + +window.dino-main .file-image-widget .file-box-outer { + color: #eee; + background: rgba(0, 0, 0, 0.5); +} + +window.dino-main .file-image-widget .file-box-outer button { + color: #eee; + background: transparent; + border: none; + box-shadow: none; +} + +window.dino-main .file-image-widget .file-box-outer button:hover { + background: rgba(100, 100, 100, 0.5); +} + window.dino-main .call-box-outer.incoming { border-color: alpha(@theme_selected_bg_color, 0.3); } |