From d264df1504b4ba2dcb360d8e78e83d643fe66d7a Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 11 Mar 2021 15:54:30 -0800 Subject: [PATCH 01/18] Additional metadata for small cards --- .../document-card-small.component.html | 34 +++++++++++++++---- .../document-card-small.component.scss | 27 ++++++++++++++- .../document-card-small.component.ts | 3 ++ .../document-list.component.html | 2 +- src-ui/src/theme_dark.scss | 2 +- 5 files changed, 58 insertions(+), 10 deletions(-) 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..96c41091d 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,35 @@ {{(document.correspondent$ | async)?.name}}: - {{document.title | documentTitle}} (#{{document.archive_serial_number}}) + {{document.title | documentTitle}}

-
From f5a06ac0dd3e2a43ba47aa81b219d44eb4323868 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 06:11:53 -0800 Subject: [PATCH 03/18] Slightly shorter thumbnail --- .../document-card-small/document-card-small.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 410481569..3f9183074 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -7,7 +7,7 @@ .doc-img { object-fit: cover; object-position: top left; - height: 190px; + height: 180px; mix-blend-mode: multiply; } From 5eca0ce55480c98f16b831af39bcc3cdc4bc6ae5 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 06:30:03 -0800 Subject: [PATCH 04/18] Light mode fixes --- .../document-card-small.component.html | 8 ++++---- .../document-card-small.component.scss | 9 +++++++-- 2 files changed, 11 insertions(+), 6 deletions(-) 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 a8dea01fe..7de26bf0f 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 @@ -29,8 +29,8 @@

-
- Score: - - +
+ + + +
- - 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..9caaabf5c 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,21 @@ .doc-img-background-selected { background-color: $primaryFaded; } + +.card-metadata { + line-height: 1; + + button { + line-height: 1; + + &:hover, + &:focus { + background-color: transparent !important; + } + } + + .metadata-icon { + width: 0.8rem; + height: 0.8rem; + } +} From cb2eff47cc3b129a3b2804384e464becd0a36535 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 07:15:00 -0800 Subject: [PATCH 06/18] Refactor --- .../document-card-large/document-card-large.component.html | 2 +- .../document-card-large/document-card-large.component.scss | 2 +- .../document-card-small/document-card-small.component.html | 2 +- .../document-card-small/document-card-small.component.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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 6580fc27d..1518acba7 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 @@ -61,7 +61,7 @@ -
+
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 1f1e2fc46..c712de017 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -51,10 +51,6 @@ } } - .no-click { - cursor: default; - } - .metadata-icon { width: 0.8rem; height: 0.8rem; From 76cee7840830c4874d4a49916a735ec6c85bcac7 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 08:12:36 -0800 Subject: [PATCH 10/18] Visual tweaks for responsive --- .../document-card-large.component.html | 10 +++++----- .../document-card-large.component.scss | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) 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 f4ba713ea..419f57a44 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 @@ -61,25 +61,25 @@
-
-
  • +
    +
  • Score:
  • - -
  • +
  • #{{document.archive_serial_number}}
  • -
  • +
  • -
    -
  • +
    +
  • Score:
  • - -
  • +
  • #{{document.archive_serial_number}}
  • -
  • +
  • -
  • +
    Score: -
  • +
    -
  • +
    #{{document.archive_serial_number}} -
  • -
  • +
  • +
    {{document.created | customDate:'mediumDate'}} - +
    From 9b4625b4a5bb542220f758e2d0c819565a0adccc Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 19:52:31 -0800 Subject: [PATCH 13/18] Fix pager color in dark mode --- src-ui/src/theme_dark.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 8b6e6aab5..bf8b5064a 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; From 43b1700e91a44bad0f949e2069f68cb5750c95c3 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 19:59:45 -0800 Subject: [PATCH 14/18] hover color for card footer buttons --- .../document-card-small/document-card-small.component.scss | 1 + src-ui/src/theme_dark.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index c712de017..6bd7e64c7 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -48,6 +48,7 @@ &:hover, &:focus { background-color: transparent !important; + color: $primary; } } diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index bf8b5064a..996f9da3d 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -283,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) { From 0aacebf78397588e30884c1eebf9c9b647a7faf5 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 12 Mar 2021 20:00:23 -0800 Subject: [PATCH 15/18] Display date & ASN on one line if fits --- .../document-card-small.component.html | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) 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 b388a4bff..667fd8618 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 @@ -30,26 +30,28 @@