{attribute}.",
@@ -1290,6 +1285,7 @@
"document-setup-description": "A short text explaining what placeholders are and how to use them in your report template. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.",
"document-setup-heading": "Document Setup",
"invalid-upload": "Invalid format selected for Upload! Supported formats are XLSX and DOCX",
+ "multi-file-report": "(Multi-file)",
"report-documents": "Report Documents",
"table-header": {
"description": "Description",
@@ -1416,6 +1412,7 @@
}
},
"type": "Type",
+ "unknown": "Unknown",
"upload-status": {
"dialog": {
"actions": {
diff --git a/apps/red-ui/src/assets/styles/red-menu.scss b/apps/red-ui/src/assets/styles/red-menu.scss
index 65b94e05f..567c4b3b8 100644
--- a/apps/red-ui/src/assets/styles/red-menu.scss
+++ b/apps/red-ui/src/assets/styles/red-menu.scss
@@ -1,4 +1,5 @@
@import 'variables';
+@import 'red-mixins';
.mat-menu-panel {
border-radius: 8px !important;
@@ -6,6 +7,7 @@
max-width: none !important;
min-width: 180px !important;
margin-top: 10px;
+ @include scroll-bar;
.mat-menu-content:not(:empty) {
padding-top: 8px;
diff --git a/apps/red-ui/src/assets/styles/red-select.scss b/apps/red-ui/src/assets/styles/red-select.scss
index 1a9c3b0ac..2efdd6510 100644
--- a/apps/red-ui/src/assets/styles/red-select.scss
+++ b/apps/red-ui/src/assets/styles/red-select.scss
@@ -1,14 +1,19 @@
@import 'variables';
+@import 'red-mixins';
-.mat-select-panel .mat-option {
- &:hover:not(.mat-option-disabled),
- &:focus:not(.mat-option-disabled) {
- background-color: $grey-6;
- }
+.mat-select-panel {
+ @include scroll-bar;
- &.mat-selected:not(.mat-option-multiple) {
- background-color: rgba($primary, 0.2);
- color: $accent;
+ .mat-option {
+ &:hover:not(.mat-option-disabled),
+ &:focus:not(.mat-option-disabled) {
+ background-color: $grey-6;
+ }
+
+ &.mat-selected:not(.mat-option-multiple) {
+ background-color: rgba($primary, 0.2);
+ color: $accent;
+ }
}
}