gtritchie_bulk-properties/styles.css
Gary Ritchie 29bed989d7
Add deselect-all command with progress and cancellation
Shows a persistent Notice with live progress ("Deselecting 3 / 47...")
and a cancel button. Extracts getSelectedFiles to shared src/files.ts.
2026-03-26 22:10:58 -06:00

38 lines
856 B
CSS

.bulk-properties-modal {
max-width: 500px;
}
.bulk-properties-date-input,
.bulk-properties-number-input {
background: var(--background-modifier-form-field);
border: 1px solid var(--background-modifier-border);
border-radius: var(--input-radius);
color: var(--text-normal);
padding: var(--size-4-1) var(--size-4-2);
font-size: var(--font-ui-medium);
}
.bulk-properties-file-list {
max-height: 200px;
overflow-y: auto;
border: 1px solid var(--background-modifier-border);
border-radius: var(--radius-s);
padding: var(--size-4-1);
margin-bottom: var(--size-4-4);
}
.bulk-properties-file-row {
display: flex;
align-items: center;
gap: var(--size-4-2);
padding: var(--size-2-1) 0;
}
.bulk-properties-file-path {
font-size: var(--font-ui-small);
color: var(--text-normal);
}
.bulk-properties-cancel-btn {
margin-left: var(--size-4-2);
}