@@ -56,7 +56,7 @@
diff --git a/apps/red-ui/src/assets/i18n/en.json b/apps/red-ui/src/assets/i18n/en.json
index 6e8be4829..221819121 100644
--- a/apps/red-ui/src/assets/i18n/en.json
+++ b/apps/red-ui/src/assets/i18n/en.json
@@ -178,7 +178,6 @@
"label": "Outdated",
"toast": {
"message-project": "Some documents were not processed with the latest rule/dictionary set. They are marked with:\n\n",
- "message-file": "This documents was not processed with the latest rule/dictionary set.\n\n",
"actions": {
"reanalyse-all": "Reanalyze all",
"reanalyse-file": "Reanalyze this file",
@@ -249,6 +248,7 @@
"file-preview": {
"show-redacted-view": "Show Redacted Preview",
"cannot-show-redacted-view": "Redactions out of sync. Redacted Preview only available after reanalysis",
+ "reanalyse-notification": "This document was not processed with the latest rule/dictionary set. Reanalyse now to get updated annotations.",
"reanalyse-file": "File reanalysis in progress... ",
"view-toggle": "Redacted View",
"tabs": {
diff --git a/apps/red-ui/src/assets/styles/red-button.scss b/apps/red-ui/src/assets/styles/red-button.scss
index 3e6f49608..ff39775b0 100644
--- a/apps/red-ui/src/assets/styles/red-button.scss
+++ b/apps/red-ui/src/assets/styles/red-button.scss
@@ -47,7 +47,11 @@
.mat-icon-button {
transition: background-color 0.25s ease-in-out;
- &:hover {
+ &.warn {
+ background-color: $yellow-2;
+ }
+
+ &:hover:not(.warn) {
background-color: $grey-2;
}
}
diff --git a/apps/red-ui/src/assets/styles/red-tooltips.scss b/apps/red-ui/src/assets/styles/red-tooltips.scss
index a26529fca..7a0fecf62 100644
--- a/apps/red-ui/src/assets/styles/red-tooltips.scss
+++ b/apps/red-ui/src/assets/styles/red-tooltips.scss
@@ -11,19 +11,29 @@
position: relative;
overflow: visible !important;
text-align: center;
-}
-.mat-tooltip:after {
- content: '';
- position: absolute;
- left: 50%;
- margin-left: -5px;
- width: 0;
- height: 0;
- z-index: 3000;
- border-left: solid 5px transparent;
- border-right: solid 5px transparent;
- border-top: solid 6px $accent;
+ &:after {
+ content: '';
+ position: absolute;
+ left: 50%;
+ margin-left: -5px;
+ width: 0;
+ height: 0;
+ z-index: 3000;
+ border-left: solid 5px transparent;
+ border-right: solid 5px transparent;
+ border-top: solid 6px $accent;
+ }
+
+ &.warn {
+ background-color: $yellow-2;
+ text-align: initial;
+ color: $accent;
+
+ &:after {
+ border-top: solid 6px $yellow-2;
+ }
+ }
}
.mat-tooltip[style*='transform-origin: center top']:after {