Skip to content

Commit

Permalink
SAK-51029 Gradebook expected icons missing from grade summary (sakaip…
Browse files Browse the repository at this point in the history
  • Loading branch information
hornersa authored Feb 21, 2025
1 parent 871eaee commit 90cbf07
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
<div class="gb-summary-category-toggle-container">
<a href="javascript:void(0);" class="gb-summary-category-toggle" wicket:message="title:studentsummary.categorytoggle"><span wicket:id="category" class="gb-summary-category-name"></span></a>
<span class="gb-summary-grade-flags" wicket:id="flags">
<span wicket:id="isExtraCredit" class="gb-flag-extra-credit"></span>
<span wicket:id="isEqualWeight" class="gb-flag-equal-weight"></span>
<span wicket:id="isExtraCredit" class="si gb-flag-extra-credit"></span>
<span wicket:id="isEqualWeight" class="si gb-flag-equal-weight"></span>
</span>
</div>
<p wicket:id="categoryDropInfo" class="gb-summary-grade-category-dropInfo">
Expand All @@ -53,10 +53,10 @@
<span class="gb-summary-grade-title" wicket:id="title"></span>
<span><a href="javascript:void(0);" class="gb-summary-grade-stats float-end" wicket:message="title:studentsummary.gradebookitem.assignmentstats" wicket:id="assignmentStatsLink"></a></span>
<span class="gb-summary-grade-flags" wicket:id="flags">
<span wicket:id="isExtraCredit" class="gb-flag-extra-credit"></span>
<span wicket:id="isNotCounted" class="gb-flag-not-counted"></span>
<span wicket:id="isNotReleased" class="gb-flag-not-released"></span>
<span wicket:id="isExcused" class="gb-flag-excused"></span>
<span wicket:id="isExtraCredit" class="si gb-flag-extra-credit"></span>
<span wicket:id="isNotCounted" class="si gb-flag-not-counted"></span>
<span wicket:id="isNotReleased" class="si gb-flag-not-released"></span>
<span wicket:id="isExcused" class="si gb-flag-excused"></span>
<span wicket:id="isExternal"></span>
</span>
<a class="compare-grades-link" href="javascript:void(0);" wicket:message="title:studentsummary.gradebookitem.compare.title" wicket:id="compareLink">
Expand All @@ -75,8 +75,8 @@
<div>
<span wicket:id="categoryName"></span>
<span class="gb-summary-grade-category-flags" wicket:id="cflags">
<span wicket:id="isExtraCredit" class="gb-flag-extra-credit"></span>
<span wicket:id="isEqualWeight" class="gb-flag-equal-weight"></span>
<span wicket:id="isExtraCredit" class="si gb-flag-extra-credit"></span>
<span wicket:id="isEqualWeight" class="si gb-flag-equal-weight"></span>
</span>
</div>
<p wicket:id="categoryDropInfo" class="gb-summary-grade-category-col-dropInfo">Drop Highest: 1</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,6 @@
text-align: center;
font-style: normal;
}
.gb-flag-not-counted:before {
content: '\F1DF';
text-decoration-line: line-through;
}
.gb-flag-not-released:before {
content: '\F33F';
}
.gb-flag-counted,
.gb-flag-released {
display: none;
Expand All @@ -252,12 +245,6 @@
color:var(--sakai-color-gold--darker-5);
background-color: var(--sakai-color-gold--lighter-5) !important;
}
.gb-flag-equal-weight:before {
content: '\2696';
}
.gb-flag-extra-credit:before {
content: '\F4FC';
}
#gradeTableWrapper .gb-notification.gb-flag-extra-credit:before {
color:var(--sakai-color-gold--darker-1);
}
Expand All @@ -266,12 +253,7 @@
color: var(--sakai-text-color-dimmed);
}

.gb-flag-excused::before {
content: '\F1DF';
text-decoration-line: line-through;
}

.gb-flag-external:before {
.gb-flag-external:before {
content: '\F140';
}
.gb-flag-read-only:before {
Expand Down Expand Up @@ -1675,3 +1657,18 @@ max-height:100px;
{
text-decoration: line-through;
}

.gb-flag-not-counted:before, .gb-flag-excused:before {
content: '\F1DF';
text-decoration: line-through;
}
.gb-flag-not-released:before {
content: '\F33F';
}
.gb-flag-extra-credit:before {
content: '\F4FC';
}
.gb-flag-equal-weight:before {
content: '\2696';
}

0 comments on commit 90cbf07

Please sign in to comment.