diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index c7f688bc4..119960386 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -23,7 +23,6 @@ {{document.title | documentTitle}} -
#{{document.archive_serial_number}}

@@ -62,13 +61,32 @@ -

- Score: - - +
+
+ Score: + +
+ +
+ + #{{document.archive_serial_number}} +
+
+ + {{document.created | customDate:'mediumDate'}} +
- - Created: {{document.created | customDate}}
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss index c49de93b5..c3a358a2b 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss @@ -37,3 +37,25 @@ .doc-img-background-selected { background-color: $primaryFaded; } + +.card-info { + line-height: 1; + + button { + line-height: 1; + + &:hover, + &:focus { + background-color: transparent !important; + } + } + + .metadata-icon { + width: 0.8rem; + height: 0.8rem; + } + + .search-score { + padding-top: 0.35rem !important; + } +} diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts index 10457054f..da147c07b 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts @@ -39,6 +39,9 @@ export class DocumentCardLargeComponent implements OnInit { @Output() clickCorrespondent = new EventEmitter() + @Output() + clickDocumentType = new EventEmitter() + @Input() searchScore: number diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index eca5abb97..0c66419e8 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -25,13 +25,36 @@ {{(document.correspondent$ | async)?.name}}: - {{document.title | documentTitle}} (#{{document.archive_serial_number}}) + {{document.title | documentTitle}}

-
- +
@@ -170,5 +170,5 @@
- +
diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index f3336cc1a..996f9da3d 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -76,6 +76,10 @@ $border-color-dark-mode: #47494f; } } + .page-item.active .page-link { + background-color: darken($primary-dark-mode, 10%); + } + .nav-tabs { border-color: $border-color-dark-mode; @@ -226,7 +230,7 @@ $border-color-dark-mode: #47494f; } .btn-outline-secondary { - border-color: $text-color-dark-mode; + border-color: darken($text-color-dark-mode, 30%); color: $text-color-dark-mode; &:not(:disabled):not(.disabled):hover { @@ -279,6 +283,10 @@ $border-color-dark-mode: #47494f; background-color: $bg-dark-mode !important; } + .card-footer button:hover { + color: $primary-dark-mode !important; + } + .form-control:not(.is-invalid):not(.btn), input:not(.is-invalid), textarea:not(.is-invalid) {