diff --git a/app/analysis/index/template.hbs b/app/analysis/index/template.hbs
index ed0c9d22d..2a03b3db2 100644
--- a/app/analysis/index/template.hbs
+++ b/app/analysis/index/template.hbs
@@ -374,10 +374,10 @@
report.verifiedBy
report.verifiedBy.username
}}
-
|
- |
- |
- |
+ |
+ |
+ |
+ |
{{/each}}
{{#if this._canLoadMore}}
diff --git a/app/components/sy-checkmark/template.hbs b/app/components/sy-checkmark/template.hbs
index 9f0abac13..d3bb5aded 100644
--- a/app/components/sy-checkmark/template.hbs
+++ b/app/components/sy-checkmark/template.hbs
@@ -1 +1 @@
-
+
diff --git a/app/index/activities/template.hbs b/app/index/activities/template.hbs
index 4186386bd..068cbe8f7 100644
--- a/app/index/activities/template.hbs
+++ b/app/index/activities/template.hbs
@@ -57,9 +57,9 @@
{{/if}}
- |
diff --git a/app/styles/analysis.scss b/app/styles/analysis.scss
index e04bdd774..464a1e502 100644
--- a/app/styles/analysis.scss
+++ b/app/styles/analysis.scss
@@ -1,3 +1,5 @@
+@use "sass:color";
+
.table--analysis {
margin-bottom: 0;
table-layout: fixed;
@@ -77,3 +79,6 @@
.table--analysis tr.selected td {
border-color: lighten($color-primary, 20%) !important;
}
+.highlight {
+ color: color.adjust($color-primary, $lightness: -10%);
+}
diff --git a/app/styles/components/sy-toggle.scss b/app/styles/components/sy-toggle.scss
index 6cf6cc478..52fc6921d 100644
--- a/app/styles/components/sy-toggle.scss
+++ b/app/styles/components/sy-toggle.scss
@@ -1,3 +1,5 @@
+@use "sass:color";
+
.sy-toggle {
display: flex;
align-items: center;
@@ -5,7 +7,7 @@
margin: auto;
&.active {
- color: $color-primary;
+ color: color.adjust($color-primary, $lightness: -10%);
}
&.inactive {
diff --git a/tests/integration/components/sy-checkmark/component-test.js b/tests/integration/components/sy-checkmark/component-test.js
index a45e6595d..7b91c72fc 100644
--- a/tests/integration/components/sy-checkmark/component-test.js
+++ b/tests/integration/components/sy-checkmark/component-test.js
@@ -15,4 +15,10 @@ module("Integration | Component | sy checkmark", function (hooks) {
await render(hbs``);
assert.dom(".fa-square-check").exists({ count: 1 });
});
+
+ test("works highlight", async function (assert) {
+ await render(hbs``);
+ assert.dom(".fa-square-check").exists({ count: 1 });
+ assert.dom(".highlight").exists({ count: 1 });
+ });
});
|