Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix: add glimming to the checked boxes in analysis & timesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
MitanOmar committed Apr 25, 2023
1 parent 16fda79 commit 486d6ad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/analysis/index/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@
report.verifiedBy.username
}}</td>
<td><SyCheckmark @checked={{report.rejected}} /></td>
<td><SyCheckmark @checked={{report.review}} /></td>
<td><SyCheckmark @checked={{report.notBillable}} /></td>
<td><SyCheckmark class="{{if report.review "blue-checked"}}" @checked={{report.review}} /></td>
<td><SyCheckmark class="{{if report.notBillable "blue-checked"}}" @checked={{report.notBillable}} /></td>
<td><SyCheckmark @checked={{report.billed}} /></td>
</tr>
{{/each}}
Expand Down
3 changes: 3 additions & 0 deletions app/styles/analysis.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,6 @@
.table--analysis tr.selected td {
border-color: lighten($color-primary, 20%) !important;
}
.blue-checked {
color: rgb(0 102 255);
}
2 changes: 1 addition & 1 deletion app/styles/components/sy-toggle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
margin: auto;

&.active {
color: $color-primary;
color: rgb(0 102 255);
}

&.inactive {
Expand Down

0 comments on commit 486d6ad

Please sign in to comment.