Bulk actions support (#1418)

This commit is contained in:
Markos Gogoulos
2025-11-11 11:32:54 +02:00
committed by GitHub
parent 2a0cb977f2
commit e80590a3aa
160 changed files with 14100 additions and 1797 deletions

View File

@@ -0,0 +1,53 @@
@import '../../css/config/index.scss';
.select-all-checkbox {
display: inline-block;
margin-left: 8px;
vertical-align: middle;
.select-all-label {
display: flex;
align-items: center;
cursor: pointer;
user-select: none;
font-size: 15px;
font-weight: 600;
color: #333;
transition: color 0.2s ease;
&:hover:not(.disabled) {
color: var(--brand-color, #007bff);
}
&.disabled {
opacity: 0.5;
cursor: not-allowed;
}
input[type='checkbox'] {
width: 20px;
height: 20px;
margin: 0 8px 0 0;
cursor: pointer;
accent-color: var(--brand-color, #007bff);
&:disabled {
cursor: not-allowed;
}
}
.checkbox-label-text {
line-height: 1;
}
}
.dark_theme & {
.select-all-label {
color: #fff;
&:hover:not(.disabled) {
color: var(--brand-color, #4da3ff);
}
}
}
}