2026-02-21 00:19:04 +01:00
|
|
|
|
/* Multi-Select – checkboxes & batch action bar */
|
|
|
|
|
|
.list-header-checkbox,
|
2026-04-03 17:58:14 +02:00
|
|
|
|
.file-item .checkbox-cell {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.list-header-checkbox input[type="checkbox"],
|
2026-04-03 17:58:14 +02:00
|
|
|
|
.file-item .checkbox-cell input[type="checkbox"] {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
width: 17px;
|
|
|
|
|
|
height: 17px;
|
|
|
|
|
|
cursor: pointer;
|
2026-04-08 11:03:20 +02:00
|
|
|
|
accent-color: var(--color-accent);
|
2026-04-07 22:48:59 +02:00
|
|
|
|
border-radius: 4px;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.list-header.selection-mode {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
grid-template-columns: 36px 1fr;
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background-color: var(--color-multiselect-bg);
|
|
|
|
|
|
color: var(--color-multiselect-text);
|
|
|
|
|
|
border-bottom-color: var(--color-multiselect-border);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.list-header.selection-mode .list-header-checkbox input[type="checkbox"] {
|
2026-04-08 11:03:20 +02:00
|
|
|
|
accent-color: var(--color-accent);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-selection-info {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
min-width: 0;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-31 18:35:34 +02:00
|
|
|
|
.batch-selection-bar {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-bg);
|
|
|
|
|
|
color: var(--color-multiselect-text);
|
2026-04-07 22:48:59 +02:00
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
overflow: hidden;
|
2026-04-16 00:49:32 +02:00
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
height: 60px;
|
|
|
|
|
|
transform: translateY(-8px);
|
2026-04-07 22:48:59 +02:00
|
|
|
|
transition:
|
|
|
|
|
|
opacity 0.2s,
|
|
|
|
|
|
max-height 0.25s,
|
|
|
|
|
|
transform 0.2s,
|
|
|
|
|
|
margin 0.2s,
|
|
|
|
|
|
padding 0.2s;
|
|
|
|
|
|
pointer-events: auto;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-bar-close {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
2026-04-08 11:03:20 +02:00
|
|
|
|
color: var(--color-multiselect-text-faint);
|
2026-04-07 22:48:59 +02:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
padding: 4px 6px;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
transition:
|
|
|
|
|
|
background 0.15s,
|
|
|
|
|
|
color 0.15s;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-bar-close:hover {
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-hover-bg);
|
|
|
|
|
|
color: var(--color-multiselect-text);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-bar-count {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
white-space: nowrap;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-bar-actions {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-btn {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 7px 14px;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 8px;
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-hover-bg);
|
|
|
|
|
|
color: var(--color-multiselect-action-text);
|
2026-04-07 22:48:59 +02:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
|
white-space: nowrap;
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-btn:hover {
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-action-hover);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-btn-danger {
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-danger-bg);
|
|
|
|
|
|
color: var(--color-multiselect-danger-text);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.batch-btn-danger:hover {
|
2026-04-08 11:03:20 +02:00
|
|
|
|
background: var(--color-multiselect-danger-active);
|
|
|
|
|
|
color: var(--color-multiselect-danger-text-active);
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
2026-04-07 22:48:59 +02:00
|
|
|
|
.batch-btn span {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
2026-02-21 00:19:04 +01:00
|
|
|
|
|
2026-04-07 22:48:59 +02:00
|
|
|
|
.batch-btn {
|
|
|
|
|
|
padding: 7px 10px;
|
|
|
|
|
|
}
|
2026-02-21 00:19:04 +01:00
|
|
|
|
}
|