diff --git a/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.scss b/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.scss
index ea3dea645..ef18f9b40 100644
--- a/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.scss
+++ b/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.scss
@@ -4,7 +4,6 @@
display: flex;
flex-direction: column;
align-items: center;
- padding-top: 120px;
text-align: center;
> mat-icon {
diff --git a/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.ts b/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.ts
index 9367ebd8b..b42f0e62e 100644
--- a/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.ts
+++ b/apps/red-ui/src/app/modules/shared/components/empty-state/empty-state.component.ts
@@ -12,6 +12,7 @@ export class EmptyStateComponent implements OnInit {
@Input() showButton = true;
@Input() buttonIcon = 'red:plus';
@Input() horizontalPadding = 100;
+ @Input() verticalPadding = 120;
@Input() type: 'no-data' | 'no-match' = 'no-data';
@Output() action = new EventEmitter();
diff --git a/apps/red-ui/src/assets/i18n/de.json b/apps/red-ui/src/assets/i18n/de.json
index daa4bdd5b..837a5d879 100644
--- a/apps/red-ui/src/assets/i18n/de.json
+++ b/apps/red-ui/src/assets/i18n/de.json
@@ -276,7 +276,9 @@
}
},
"file-preview": {
- "no-annotations-for-page": "Auf dieser Seite gibt es keine Redaktionen, Hinweise oder Anfragen.",
+ "no-data": {
+ "title": "Auf dieser Seite gibt es keine Redaktionen, Hinweise oder Anfragen."
+ },
"show-redacted-view": "Redigierte Vorschau anzeigen",
"cannot-show-redacted-view": "Redaktionen nicht synchron. Die redigierte Vorschau ist nur nach einer erneuten Analyse verfügbar",
"reanalyse-notification": "Dieses Dokument wurde nicht mit dem neuesten Regel- / Wörterbuchsatz verarbeitet. Analysieren Sie jetzt, um aktualisierte Anmerkungen zu erhalten.",
diff --git a/apps/red-ui/src/assets/i18n/en.json b/apps/red-ui/src/assets/i18n/en.json
index 88ded3be0..7d5246ba8 100644
--- a/apps/red-ui/src/assets/i18n/en.json
+++ b/apps/red-ui/src/assets/i18n/en.json
@@ -300,7 +300,9 @@
"standard-tooltip": "Standard Workload view shows all hints, redactions, recommendations & suggestions. This view allows editing.",
"redacted-tooltip": "Redaction preview shows only redactions. Consider this a preview for the final redacted version. This view is only available if the file has no pending changes & doesn't require a reanalysis",
"delta-tooltip": "Delta View shows only the changes since last re-analysis. This view is only available if there is at least 1 change",
- "no-annotations-for-page": "There are no redactions, hints or requests on this page.",
+ "no-data": {
+ "title": "There are no annotations on this page."
+ },
"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. Analyze now to get updated annotations.",
@@ -322,7 +324,9 @@
},
"annotations": {
"label": "Workload",
- "select": "Select"
+ "select": "Select",
+ "jump-to-previous": "Jump to Previous",
+ "jump-to-next": "Jump to Next"
},
"is-excluded": "Redaction is disabled for this document."
},
diff --git a/apps/red-ui/src/assets/icons/general/nav-next.svg b/apps/red-ui/src/assets/icons/general/nav-next.svg
new file mode 100644
index 000000000..b9f52e81b
--- /dev/null
+++ b/apps/red-ui/src/assets/icons/general/nav-next.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/apps/red-ui/src/assets/icons/general/nav-prev.svg b/apps/red-ui/src/assets/icons/general/nav-prev.svg
new file mode 100644
index 000000000..215a5305a
--- /dev/null
+++ b/apps/red-ui/src/assets/icons/general/nav-prev.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/apps/red-ui/src/assets/styles/red-button.scss b/apps/red-ui/src/assets/styles/red-button.scss
index bae06f57f..cd54d294d 100644
--- a/apps/red-ui/src/assets/styles/red-button.scss
+++ b/apps/red-ui/src/assets/styles/red-button.scss
@@ -13,10 +13,15 @@
align-items: center;
line-height: 34px;
transition: opacity 0.2s;
+ width: 100%;
> *:not(:last-child) {
margin-right: 6px;
}
+
+ > span {
+ margin: auto;
+ }
}
&.mat-button-disabled {
diff --git a/apps/red-ui/src/assets/styles/red-page-layout.scss b/apps/red-ui/src/assets/styles/red-page-layout.scss
index db844d535..ce6b6c562 100644
--- a/apps/red-ui/src/assets/styles/red-page-layout.scss
+++ b/apps/red-ui/src/assets/styles/red-page-layout.scss
@@ -232,6 +232,10 @@ section.settings {
margin-top: 20px;
}
+.mt-32 {
+ margin-top: 32px;
+}
+
.pb-24 {
padding-bottom: 24px;
}