Skip to content

Commit 8bb3d84

Browse files
committed
dashboard input in progress cell fills in yellow for retries
1 parent b7092ff commit 8bb3d84

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

assets/css/style.less

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ td {
4646
background: rgb(150, 255, 130);
4747
}
4848

49+
.input-retried {
50+
background: #FEFF80;
51+
}
52+
4953
.input-failure {
5054
background: rgb(255, 150, 130);
5155
}

views/dashboard.tpl

+2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@
9595
<td class="input-success">
9696
%elif in_complete:
9797
<td class="input-failure">
98+
%elif in_attempts > 0:
99+
<td class="input-retried">
98100
%else:
99101
<td class="input-incomplete">
100102
%end

0 commit comments

Comments
 (0)