additional tag edditing functionality. and delete by tag. added import tuning options to settings
This commit is contained in:
+33
-15
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user