summaryrefslogtreecommitdiffstats
path: root/ui/assets
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-02-24 17:38:05 -0500
committerDessalines <tyhou13@gmx.com>2020-02-24 17:38:05 -0500
commit788ecf9055b833b16aef730873cc80cf272384ca (patch)
treed7e4974a497b1b84f0ddc833c9df4509657b3a6d /ui/assets
parent2dec9b5b10098201b6197441d1984f8ff3e4e909 (diff)
Adding missing image thumbnail. Fixes #553
Diffstat (limited to 'ui/assets')
-rw-r--r--ui/assets/css/main.css23
1 files changed, 22 insertions, 1 deletions
diff --git a/ui/assets/css/main.css b/ui/assets/css/main.css
index 00020177..704cddae 100644
--- a/ui/assets/css/main.css
+++ b/ui/assets/css/main.css
@@ -188,7 +188,7 @@ hr {
border: unset;
}
-.link-overlay {
+.img-expand-overlay {
position: absolute;
top: 0;
right: 0;
@@ -197,3 +197,24 @@ hr {
border-bottom-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
+
+.link-overlay:hover {
+ transition: .1s;
+ opacity: 1;
+}
+
+.link-overlay {
+ transition: opacity .1s ease-in-out;
+ position: absolute;
+ opacity: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+ padding: 10px;
+ background: rgba(0,0,0,.6);
+}
+
+.placeholder {
+ height: 50px;
+ width: 50px;
+}