feat: add assignment type count warning (#32068)

* feat: add assignment type count warning

* style: quality
This commit is contained in:
Jansen Kantor
2023-04-14 12:26:29 -04:00
committed by GitHub
parent e973266b2f
commit de047cd6f9
8 changed files with 137 additions and 10 deletions

View File

@@ -882,6 +882,38 @@
#field-course-grading-assignment-droppable {
width: flex-grid(2, 6);
}
.assignment-count-info {
padding: $baseline;
border-radius: 3px;
@extend %t-copy-sub2;
}
.assignment-count-warning {
background-color: $yellow-l4;
.assignment-count-warning-header{
@extend %t-copy-sub1;
font-weight: bold;
.header-warning {
font-weight: bolder;
}
margin-bottom: ($baseline / 2);
}
.assignment-count-warning-content {
ol.assignment_type_count_list {
list-style: auto;
list-style-position: inside;
padding-left: ($baseline*1.5);
}
}
}
.assignment-count-matches {
background-color: $green-l4;
}
}
.actions {