diff options
author | fiaxh <git@lightrise.org> | 2024-11-02 22:24:59 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2024-11-15 14:40:08 -0600 |
commit | 79f792e090330a05753f9edb27332a946eb0840d (patch) | |
tree | 5a6f1ad3ac0af0beea44ca9e83e7a9b052263025 /main/data/style.css | |
parent | aaf4542e6208460c305db4be36b15dc832ddc95a (diff) | |
download | dino-79f792e090330a05753f9edb27332a946eb0840d.tar.gz dino-79f792e090330a05753f9edb27332a946eb0840d.zip |
Fix and improve stateless file-sharing
Diffstat (limited to 'main/data/style.css')
-rw-r--r-- | main/data/style.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/data/style.css b/main/data/style.css index 5b9da21d..0909f8a0 100644 --- a/main/data/style.css +++ b/main/data/style.css @@ -181,6 +181,28 @@ window.dino-main .file-image-widget .file-box-outer button:hover { border-radius: 6px; } +.dino-main .file-details { + color: white; + background: alpha(black, 0.3); + border-radius: 5px; + padding: 5px 10px; +} + +.dino-main .circular-loading-indicator { + border-radius: 50%; + padding: 5px; + transition: background-image 0.5s linear; +} + +.dino-main .circular-loading-indicator > * { + border-radius: 50%; + background: @theme_bg_color; +} + +.dino-main .circular-loading-indicator button { + padding: 2px; +} + /* Call widget */ window.dino-main .call-box-outer.incoming { |