From 33f760d3198a2ebfa6fbe593fb51e97f45dcb665 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 3 Oct 2024 21:36:50 -0700 Subject: [PATCH] Use dropdown for custom field list actions on mobile --- src-ui/messages.xlf | 23 +++++++++++++++---- .../custom-fields.component.html | 16 +++++++++++-- .../custom-fields.component.scss | 4 ++++ 3 files changed, 37 insertions(+), 6 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 88966edf9..e7a07a868 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -323,7 +323,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html - 39 + 51 src/app/components/manage/management-list/management-list.component.html @@ -1497,7 +1497,11 @@ src/app/components/manage/custom-fields/custom-fields.component.html - 34 + 36 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 46 src/app/components/manage/mail/mail.component.html @@ -2422,7 +2426,11 @@ src/app/components/manage/custom-fields/custom-fields.component.html - 31 + 35 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 43 src/app/components/manage/mail/mail.component.html @@ -7479,11 +7487,18 @@ 18 + + Filter Documents + + src/app/components/manage/custom-fields/custom-fields.component.html + 37 + + No fields defined. src/app/components/manage/custom-fields/custom-fields.component.html - 47 + 59 diff --git a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html index e8878fb9f..8127e4f89 100644 --- a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html +++ b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.html @@ -26,7 +26,19 @@
{{getDataType(field)}}
-
+
+
+ +
+ + + +
+
+
+
@@ -34,7 +46,7 @@  Delete
-
+
diff --git a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.scss b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.scss index e69de29bb..dfdd20433 100644 --- a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.scss +++ b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.scss @@ -0,0 +1,4 @@ +// hide caret on mobile dropdown +.d-block.d-sm-none .dropdown-toggle::after { + display: none; +}