Compare commits

...

2 Commits

Author SHA1 Message Date
Miguel Astor
5ec793b47d Added kate droppings to gitignore. 2026-03-24 15:34:15 -04:00
Miguel Astor
f658106316 Fixed issue with image links covering all image wrapper area. 2026-03-24 15:34:03 -04:00
3 changed files with 6 additions and 5 deletions

2
.gitignore vendored
View File

@@ -362,3 +362,5 @@ Icon
Network Trash Folder
Temporary Items
.apdisk
.kateproject*

View File

@@ -189,7 +189,6 @@ body {
/* Image view specific styles */
.image-content {
overflow: auto;
padding: 18px;
flex: 1 1 auto; /* occupy available vertical space inside main-area */
display: flex;
align-items: center; /* center the image vertically */

View File

@@ -164,11 +164,11 @@
<section class="gallery-scroll flex-grow-1 d-flex">
<div class="image-content w-100">
<a href="{{ image_path }}" target="_blank">
<div class="image-wrapper">
<div class="image-wrapper">
<a href="{{ image_path }}" target="_blank">
<img src="{{ image_path }}" alt="{{ image_path.name }}" class="image-full">
</div>
</a>
</a>
</div>
</div>
</section>
</main>