diff --git a/apps/red-ui/src/app/components/status-bar/status-bar.component.html b/apps/red-ui/src/app/components/status-bar/status-bar.component.html index 3e36c7142..20c45cc8a 100644 --- a/apps/red-ui/src/app/components/status-bar/status-bar.component.html +++ b/apps/red-ui/src/app/components/status-bar/status-bar.component.html @@ -1,6 +1,6 @@ -
+
-
{{ rect.title }}
+
{{ rect.title }}
diff --git a/apps/red-ui/src/app/components/status-bar/status-bar.component.scss b/apps/red-ui/src/app/components/status-bar/status-bar.component.scss index bf1cd8db1..983674178 100644 --- a/apps/red-ui/src/app/components/status-bar/status-bar.component.scss +++ b/apps/red-ui/src/app/components/status-bar/status-bar.component.scss @@ -5,8 +5,16 @@ display: flex; width: 100%; - .subtitle { - margin-bottom: 8px; + &.small { + .rectangle { + width: 12px; + } + + .section-wrapper { + display: flex; + align-items: center; + gap: 10px; + } } .section-wrapper:first-child { diff --git a/apps/red-ui/src/app/components/status-bar/status-bar.component.ts b/apps/red-ui/src/app/components/status-bar/status-bar.component.ts index 12f646bf2..a6a23e4b1 100644 --- a/apps/red-ui/src/app/components/status-bar/status-bar.component.ts +++ b/apps/red-ui/src/app/components/status-bar/status-bar.component.ts @@ -14,6 +14,9 @@ export class StatusBarComponent implements OnInit { title?: string, }[] = []; + @Input() + public small = false; + constructor() { } diff --git a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.html b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.html index 89c25f203..b6ddefadb 100644 --- a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.html +++ b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.html @@ -29,26 +29,41 @@
-
-
Edit
-
Delete
-
View
-
-
-
-
- Annotations -
-
- Info + +
+
+ Quick Navigation +
+ +
+
-
+
+ + +
+
+ Annotations +
+ +
{{annotation.getStatus()}}
-
- +
-
+ +
+
+ Info +
+ +
+ + +
645
9
@@ -97,7 +119,6 @@
-
-
- -
-
@@ -120,7 +116,7 @@
-
+
diff --git a/apps/red-ui/src/app/screens/project-overview-screen/project-overview-screen.component.scss b/apps/red-ui/src/app/screens/project-overview-screen/project-overview-screen.component.scss index c626ee8f2..b80225463 100644 --- a/apps/red-ui/src/app/screens/project-overview-screen/project-overview-screen.component.scss +++ b/apps/red-ui/src/app/screens/project-overview-screen/project-overview-screen.component.scss @@ -29,9 +29,7 @@ line-height: 18px; } - .project-team { - .member:not(:last-child) { - margin-right: 5px; - } + .members-container { + gap: 5px; } } diff --git a/apps/red-ui/src/app/upload/upload-status-dialog/upload-status-overlay.component.html b/apps/red-ui/src/app/upload/upload-status-dialog/upload-status-overlay.component.html index 6c1299786..bafe332a3 100644 --- a/apps/red-ui/src/app/upload/upload-status-dialog/upload-status-overlay.component.html +++ b/apps/red-ui/src/app/upload/upload-status-dialog/upload-status-overlay.component.html @@ -1,6 +1,6 @@
-
+
{{ 'upload-status.dialog.title.label' | translate: {p1: uploadService.files.length} }}
diff --git a/apps/red-ui/src/assets/styles/red-components.scss b/apps/red-ui/src/assets/styles/red-components.scss index f49c98a69..9d836670f 100644 --- a/apps/red-ui/src/assets/styles/red-components.scss +++ b/apps/red-ui/src/assets/styles/red-components.scss @@ -10,11 +10,11 @@ border-radius: 12px; font-size: 10px; border: 1px solid #E2E4E9; - font-family: Inter, sans-serif; letter-spacing: 0; line-height: 12px; text-align: center; - + text-transform: uppercase; + font-family: Inter, sans-serif; &.large { height: 32px; @@ -50,7 +50,11 @@ align-items: center; } - > div:not(:last-child) { - margin-right: 12px; + gap: 12px; + + mat-icon { + width: 10px; + height: 10px; + margin-right: 4px; } } 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 c3b586e7b..200d1424c 100644 --- a/apps/red-ui/src/assets/styles/red-page-layout.scss +++ b/apps/red-ui/src/assets/styles/red-page-layout.scss @@ -6,7 +6,7 @@ html, body { padding: 0; height: 100vh; font-family: 'Inter', sans-serif; - color: $grey-1; + color: $accent; } .page-header { @@ -142,8 +142,6 @@ html, body { .app-name { margin-left: 16px; height: 20px; - color: #283241; - font-family: Inter, sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0; @@ -158,7 +156,7 @@ html, body { .breadcrumb { text-decoration: none; - color: $grey-1; + color: $accent; font-size: 13px; line-height: 18px; font-weight: 600; diff --git a/apps/red-ui/src/assets/styles/red-tables.scss b/apps/red-ui/src/assets/styles/red-tables.scss index b0c767868..818888e5e 100644 --- a/apps/red-ui/src/assets/styles/red-tables.scss +++ b/apps/red-ui/src/assets/styles/red-tables.scss @@ -47,11 +47,6 @@ @include line-clamp(1); } - .table-item-title--large { - font-size: 16px; - line-height: 20px; - } - .on-hover-wrapper { width: 0; height: 0; diff --git a/apps/red-ui/src/assets/styles/red-text-styles.scss b/apps/red-ui/src/assets/styles/red-text-styles.scss index 69bb40bbf..ecee20c9b 100644 --- a/apps/red-ui/src/assets/styles/red-text-styles.scss +++ b/apps/red-ui/src/assets/styles/red-text-styles.scss @@ -24,14 +24,17 @@ a { } .heading-l { - color: #283241; - font-family: Inter, sans-serif; font-size: 18px; - font-weight: bold; - letter-spacing: 0; + font-weight: 600; line-height: 22px; } +.heading { + font-size: 16px; + line-height: 20px; + font-weight: 600; +} + .subheading { text-transform: uppercase; opacity: 0.7; diff --git a/apps/red-ui/src/assets/styles/red-variables.scss b/apps/red-ui/src/assets/styles/red-variables.scss index b7e8da0e5..67531990d 100644 --- a/apps/red-ui/src/assets/styles/red-variables.scss +++ b/apps/red-ui/src/assets/styles/red-variables.scss @@ -16,6 +16,8 @@ $red-1: #F65757; $yellow-1: #FFB83B; $green-1: #46CE7D; +$separator: rgba(226,228,233,0.9); + $right-container-inside-width: 340px; $right-container-padding: 16px; $right-container-width: calc(#{$right-container-inside-width} + 2*#{$right-container-padding} + 1px);