From 1b7cacc877d5616b34a1b5c63fd39d4ad2f6bcb7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:30:13 -0700 Subject: [PATCH] Enhancement: compactify dates dropdown (#7759) --- src-ui/messages.xlf | 40 ++++------- .../dates-dropdown.component.html | 72 +++++++++---------- .../dates-dropdown.component.scss | 27 +++++++ 3 files changed, 73 insertions(+), 66 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index dec952685..201cb5faa 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3094,22 +3094,6 @@ src/app/components/common/clearable-badge/clearable-badge.component.html 2 - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 38 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 59 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 104 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 125 - Are you sure? @@ -3324,36 +3308,36 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.html - 91 + 89 After src/app/components/common/dates-dropdown/dates-dropdown.component.html - 34 + 42 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 100 + 106 Before src/app/components/common/dates-dropdown/dates-dropdown.component.html - 55 + 62 src/app/components/common/dates-dropdown/dates-dropdown.component.html - 121 + 126 Added src/app/components/common/dates-dropdown/dates-dropdown.component.html - 76 + 74 src/app/components/document-list/document-list.component.html @@ -3372,28 +3356,28 @@ Last 7 days src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 45 + 48 Last month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 50 + 53 Last 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 55 + 58 Last year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 60 + 63 @@ -4646,7 +4630,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 340 + 343 Filter drop down element to filter for documents with no correspondent/type/tag assigned @@ -4654,7 +4638,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 452 + 455 diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html index b9528805b..dcab4606d 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html @@ -17,7 +17,7 @@ } - + {{rd.name}} @@ -28,20 +28,19 @@ } - + - - After + @if (createdDateAfter) { - - - Clear + + + } - - - + After + @@ -49,20 +48,19 @@ - + - - Before + @if (createdDateBefore) { - - - Clear + + + } - - - + Before + @@ -83,7 +81,7 @@ } - + {{rd.name}} @@ -94,20 +92,19 @@ } - + - - After + @if (addedDateAfter) { - - - Clear + + + } - - - + After + @@ -115,20 +112,19 @@ - + - - Before + @if (addedDateBefore) { - - - Clear + + + } - - - + Before + diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.scss b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.scss index f8e09e1b2..e101a131d 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.scss +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.scss @@ -5,6 +5,12 @@ --bs-dropdown-min-width: 40rem; } + @media screen and (max-width: 767px) { + .border-end { + border: none !important; + } + } + .btn-link { line-height: 1; } @@ -14,3 +20,24 @@ min-width: 1em; min-height: 1em; } + +.input-group-sm { + .form-control { + font-size: 0.875rem; + } +} + +.focus-variants { + .variant-focused { + display: none; + } + + &:hover, &:focus { + .variant-unfocused { + display: none; + } + .variant-focused { + display: block; + } + } +}