diff options
| author | 2025-08-18 17:01:53 +0700 | |
|---|---|---|
| committer | 2025-08-18 17:01:53 +0700 | |
| commit | f089ba2435eb4a54ab4e6b2c20d91d0c9f872a2d (patch) | |
| tree | bf1ad3ab86842d35b96f58ca5be20c97e5aaadfd /static | |
| parent | 8596dc0130ea3f175e0752ddf74e34a2f16fba28 (diff) | |
| download | web-f089ba2435eb4a54ab4e6b2c20d91d0c9f872a2d.tar.gz web-f089ba2435eb4a54ab4e6b2c20d91d0c9f872a2d.zip | |
refactor: more line height in gallery captions
feat: fixate gallery divs to viewport measures
feat: make thumbnails square
feat: remove recreating gallery on window resize
Diffstat (limited to 'static')
| -rw-r--r-- | static/input.css | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/static/input.css b/static/input.css index 0d6e786..8c0069b 100644 --- a/static/input.css +++ b/static/input.css @@ -323,14 +323,21 @@ body:has(.lg-container:not([class~="lg-inline"])) #sidebar { } .lg-content { - top: 3vmax !important; + top: 2.5vmax !important; + bottom: calc(10vmin + 5vmax) !important; +} + +.lg-thumb-item { + width: 10vmin !important; + height: 10vmin !important; } .lg-container:not([class~="lg-inline"]) .lg-content { top: 4vmax !important; } -.lg-toolbar .lg-icon { +.lg-toolbar .lg-icon, +.lg-content .lg-icon { padding: 0 0.7vmax; font-size: 1.5vmax !important; height: 1.5vmax; @@ -338,11 +345,20 @@ body:has(.lg-container:not([class~="lg-inline"])) #sidebar { color: var(--main-dark-color); } -.lg-container:not([class~="lg-inline"]) .lg-toolbar .lg-icon { +.lg-container:not([class~="lg-inline"]) .lg-toolbar .lg-icon, +.lg-container:not([class~="lg-inline"]) .lg-content .lg-icon { font-size: 3vmax !important; height: 3vmax; } +.lg-prev { + left: 0 !important; +} + +.lg-next { + right: 0 !important; +} + .lg-toolbar .lg-icon:hover { color: var(--main-medium-color); } @@ -362,7 +378,7 @@ body:has(.lg-container:not([class~="lg-inline"])) #sidebar { .inline-gallery-container { width: 80%; - height: 60vmin; + height: 70vmin; } .light-gallery-captions { |