Skip to content

Commit 293a1aa

Browse files
committed
fix bugs from frontend feedback
1 parent e994e7b commit 293a1aa

1 file changed

Lines changed: 11 additions & 7 deletions

File tree

ci/template.html

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -450,15 +450,19 @@
450450
}
451451

452452
summary::after {
453-
content: '\f078';
454-
font-family: 'Font Awesome 5 Free';
455-
font-weight: 900;
453+
content: '';
454+
display: inline-block;
455+
width: 7px;
456+
height: 7px;
457+
border-right: 2px solid var(--text-muted);
458+
border-bottom: 2px solid var(--text-muted);
459+
transform: translateY(-2px) rotate(45deg);
456460
transition: transform 0.3s ease;
457-
color: var(--text-muted);
461+
margin-right: 4px;
458462
}
459463

460464
details[open] summary::after {
461-
transform: rotate(180deg);
465+
transform: translateY(2px) rotate(225deg);
462466
}
463467

464468
summary:hover {
@@ -694,9 +698,9 @@ <h3 class="card-title">
694698
<div class="card-header-right">
695699
<span class="platform-tag"><i class="fas fa-microchip"></i> {{ report_containers[tag]["platform"] }}</span>
696700
{% if report_containers[tag]["test_success"] %}
697-
<span class="status-badge status-pass"><i class="fas fa-check"></i> PASS</span>
701+
<span class="status-badge status-pass"><i class="fas fa-check-circle"></i> PASS</span>
698702
{% else %}
699-
<span class="status-badge status-fail"><i class="fas fa-times"></i> FAIL</span>
703+
<span class="status-badge status-fail"><i class="fas fa-times-circle"></i> FAIL</span>
700704
{% endif %}
701705
</div>
702706
</div>

0 commit comments

Comments
 (0)