additional tag edditing functionality. and delete by tag. added import tuning options to settings

This commit is contained in:
Bryan Van Deusen
2026-01-18 16:52:32 -05:00
parent 4c56b73bc9
commit b3331bad76
7 changed files with 700 additions and 32 deletions
+33 -15
View File
@@ -353,17 +353,25 @@ header {
padding: 1rem;
}
/* Modal body */
/* Modal body - horizontal layout with image on left, tags on right */
.modal-body {
display: flex;
flex-direction: column;
align-items: center;
flex-direction: row;
align-items: flex-start;
gap: 1rem;
width: 100%;
max-width: 1400px;
max-width: 1600px;
max-height: 100%;
}
/* On smaller screens, stack vertically */
@media (max-width: 900px) {
.modal-body {
flex-direction: column;
align-items: center;
}
}
/* Image wrapper & zoom */
.modal-image-wrapper {
flex: 1;
@@ -494,14 +502,27 @@ header {
.tag-chip:hover { background: rgba(255,255,255,1); }
/* Modal tag editor - refined layout */
/* Modal tag editor - side panel layout */
.tag-editor {
width: 100%;
max-width: 500px;
width: 280px;
min-width: 280px;
max-height: calc(100vh - 40px);
overflow-y: auto;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
padding: 0.75rem;
border: 1px solid rgba(255, 255, 255, 0.1);
flex-shrink: 0;
}
/* On smaller screens, make tag editor full width */
@media (max-width: 900px) {
.tag-editor {
width: 100%;
max-width: 500px;
min-width: unset;
max-height: unset;
}
}
.tag-editor .tags {
@@ -578,21 +599,18 @@ header {
background: var(--btn-primary-hover);
}
/* Autocomplete dropdown */
/* Autocomplete dropdown - uses fixed positioning to escape overflow containers */
.tag-autocomplete {
position: absolute;
top: 100%;
left: 0;
right: 0;
position: fixed;
background: var(--panel);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
margin-top: 4px;
max-height: 200px;
max-height: 240px;
overflow-y: auto;
z-index: 1010;
z-index: 10100;
display: none;
box-shadow: var(--shadow-3);
min-width: 200px;
}
.tag-autocomplete.active {
display: block;