aboutsummaryrefslogtreecommitdiff
path: root/static/widgets/image/index.css
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-11-20 06:56:43 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-11-20 06:56:43 +0100
commitefb92a00185963a763217d4bedce7a1591c6dc22 (patch)
tree0ac7d86154b286195819de06decdbd850561bdcb /static/widgets/image/index.css
parentf6b7fe33ee7c08761f3403ca77b7530dbb2763df (diff)
image: implement removing
Diffstat (limited to 'static/widgets/image/index.css')
-rw-r--r--static/widgets/image/index.css45
1 files changed, 39 insertions, 6 deletions
diff --git a/static/widgets/image/index.css b/static/widgets/image/index.css
index f4e2dce..730a324 100644
--- a/static/widgets/image/index.css
+++ b/static/widgets/image/index.css
@@ -1,15 +1,18 @@
#container {
position: relative;
- background: var(--card-background);
height: 100%;
+ min-height: 100px;
+ border-radius: var(--border-radius);
+ overflow: none;
+ box-shadow: #223223aa 1px 1px 4px;
}
#container img {
+ border-radius: var(--border-radius);
max-width: 700px;
width: 100%;
- border-radius: var(--border-radius);
- box-shadow: #223223aa 1px 1px 4px;
visibility: hidden;
+ margin-bottom: -5px;
}
#container.loaded img {
@@ -17,9 +20,6 @@
}
@keyframes loader {
-}
-
-@keyframes loader {
0% {
width: 60px;
height: 60px;
@@ -57,3 +57,36 @@
.loaded #loading {
display: none;
}
+
+#menu {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ height: 100%;
+ width: 0px;
+ background: #efefef99;
+ backdrop-filter: blur(5px);
+ border-radius: var(--border-radius);
+ transition: width 0.2s ease, padding 0.2s ease;
+ overflow: hidden;
+ align-content: center;
+ overflow: hidden;
+ padding: 0px;
+}
+
+#menu.open {
+ width: 100%;
+ padding: 10px;
+}
+
+#delete {
+ background: #ee5151;
+ padding: 10px;
+ color: #fff;
+ font-weight: bold;
+ margin: auto;
+ width: min-content;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ user-select: none;
+}