[ENH] Add ability to bulk create sets

This commit is contained in:
mg
2022-08-30 00:14:43 +01:00
parent 58aef9e2b3
commit 48bb19c532
9 changed files with 466 additions and 5 deletions
+1 -1
View File
@@ -304,7 +304,7 @@ label .MuiIconButton-label > input {
border-radius: 150px;
background: var(--primary-color-dark);
margin: auto;
position: absolute;
position: fixed;
top: 0;
right: 0;
bottom: 0;
+4
View File
@@ -10,3 +10,7 @@
justify-content: space-between;
width: 100%;
}
.accept-dialog > .button-container {
justify-content: center;
}
+34
View File
@@ -26,6 +26,40 @@
flex-basis: 0;
}
.bulk-create-sets-section {
margin-top: 16px;
}
.bulk-create-sets-header, .bulk-create-sets-header > * {
display: flex;
flex-direction: row;
column-gap: 24px;
row-gap: 8px;
flex-wrap: wrap;
}
.bulk-create-sets-header > * {
column-gap: 8px;
}
.bulk-create-sets-header > * > input {
min-width: 36px;
}
.bulk-create-sets-text {
min-height: 400px;
font: inherit;
background: transparent;
color: inherit;
border: 2px solid var(--overlay-color);
padding: 8px;
margin: 12px 0;
}
.bulk-create-sets-text:focus {
outline: none;
}
.form .checkbox-list-container {
flex: 1;
}
+1 -1
View File
@@ -22,7 +22,7 @@
}
.overlay-content {
position: absolute;
position: fixed;
margin: auto;
top: 0;
right: 0;