From 321a3e87e121004cfaf2c8f6fb88765cb5143e87 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 24 Jan 2024 11:26:29 +0000 Subject: [PATCH 1/3] Refactor #5141 --- components/lib/dropdown/BaseDropdown.vue | 4 ++-- components/lib/dropdown/Dropdown.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/lib/dropdown/BaseDropdown.vue b/components/lib/dropdown/BaseDropdown.vue index 7099cd648..3d3681f39 100644 --- a/components/lib/dropdown/BaseDropdown.vue +++ b/components/lib/dropdown/BaseDropdown.vue @@ -132,11 +132,11 @@ export default { }, highlightOnSelect: { type: Boolean, - default: false + default: true }, showTick: { type: Boolean, - default: true + default: false }, filterMessage: { type: String, diff --git a/components/lib/dropdown/Dropdown.d.ts b/components/lib/dropdown/Dropdown.d.ts index f99debf03..19140bb16 100755 --- a/components/lib/dropdown/Dropdown.d.ts +++ b/components/lib/dropdown/Dropdown.d.ts @@ -436,12 +436,12 @@ export interface DropdownProps { focusOnHover?: boolean | undefined; /** * Whether the selected option will be add highlight class. - * @defaultValue false + * @defaultValue true */ highlightOnSelect?: boolean | undefined; /** * Whether the selected option will be shown with a tick. - * @defaultValue true + * @defaultValue false */ showTick?: boolean | undefined; /** From 5f463c1b79debaeaacc83d59a9b2e9ca03cd171f Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 24 Jan 2024 11:27:45 +0000 Subject: [PATCH 2/3] Update API doc --- doc/common/apidoc/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index e7139bfb3..eae033521 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -24267,7 +24267,7 @@ "optional": true, "readonly": false, "type": "boolean", - "default": "false", + "default": "true", "description": "Whether the selected option will be add highlight class." }, { @@ -24275,7 +24275,7 @@ "optional": true, "readonly": false, "type": "boolean", - "default": "true", + "default": "false", "description": "Whether the selected option will be shown with a tick." }, { From dedfe22a81216b66f53f8d764010316a9b0262b6 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Wed, 24 Jan 2024 14:29:42 +0300 Subject: [PATCH 3/3] Add tick demo --- doc/dropdown/TickDoc.vue | 75 +++++++++++++++++++ pages/dropdown/index.vue | 6 ++ public/themes/arya-blue/theme.css | 5 ++ public/themes/arya-green/theme.css | 5 ++ public/themes/arya-orange/theme.css | 5 ++ public/themes/arya-purple/theme.css | 5 ++ public/themes/aura-dark-amber/theme.css | 5 ++ public/themes/aura-dark-blue/theme.css | 5 ++ public/themes/aura-dark-cyan/theme.css | 5 ++ public/themes/aura-dark-green/theme.css | 5 ++ public/themes/aura-dark-indigo/theme.css | 5 ++ public/themes/aura-dark-lime/theme.css | 5 ++ public/themes/aura-dark-noir/theme.css | 5 ++ public/themes/aura-dark-pink/theme.css | 5 ++ public/themes/aura-dark-purple/theme.css | 5 ++ public/themes/aura-dark-teal/theme.css | 5 ++ public/themes/aura-light-amber/theme.css | 5 ++ public/themes/aura-light-blue/theme.css | 5 ++ public/themes/aura-light-cyan/theme.css | 5 ++ public/themes/aura-light-green/theme.css | 5 ++ public/themes/aura-light-indigo/theme.css | 5 ++ public/themes/aura-light-lime/theme.css | 5 ++ public/themes/aura-light-noir/theme.css | 5 ++ public/themes/aura-light-pink/theme.css | 5 ++ public/themes/aura-light-purple/theme.css | 5 ++ public/themes/aura-light-teal/theme.css | 5 ++ public/themes/bootstrap4-dark-blue/theme.css | 5 ++ .../themes/bootstrap4-dark-purple/theme.css | 5 ++ public/themes/bootstrap4-light-blue/theme.css | 5 ++ .../themes/bootstrap4-light-purple/theme.css | 5 ++ public/themes/fluent-light/theme.css | 5 ++ public/themes/lara-dark-amber/theme.css | 5 ++ public/themes/lara-dark-blue/theme.css | 5 ++ public/themes/lara-dark-cyan/theme.css | 5 ++ public/themes/lara-dark-green/theme.css | 5 ++ public/themes/lara-dark-indigo/theme.css | 5 ++ public/themes/lara-dark-pink/theme.css | 5 ++ public/themes/lara-dark-purple/theme.css | 5 ++ public/themes/lara-dark-teal/theme.css | 5 ++ public/themes/lara-light-amber/theme.css | 5 ++ public/themes/lara-light-blue/theme.css | 5 ++ public/themes/lara-light-cyan/theme.css | 5 ++ public/themes/lara-light-green/theme.css | 5 ++ public/themes/lara-light-indigo/theme.css | 5 ++ public/themes/lara-light-pink/theme.css | 5 ++ public/themes/lara-light-purple/theme.css | 5 ++ public/themes/lara-light-teal/theme.css | 5 ++ public/themes/luna-amber/theme.css | 5 ++ public/themes/luna-blue/theme.css | 5 ++ public/themes/luna-green/theme.css | 5 ++ public/themes/luna-pink/theme.css | 5 ++ public/themes/md-dark-deeppurple/theme.css | 5 ++ public/themes/md-dark-indigo/theme.css | 5 ++ public/themes/md-light-deeppurple/theme.css | 5 ++ public/themes/md-light-indigo/theme.css | 5 ++ public/themes/mdc-dark-deeppurple/theme.css | 5 ++ public/themes/mdc-dark-indigo/theme.css | 5 ++ public/themes/mdc-light-deeppurple/theme.css | 5 ++ public/themes/mdc-light-indigo/theme.css | 5 ++ public/themes/mira/theme.css | 5 ++ public/themes/nano/theme.css | 5 ++ public/themes/nova-accent/theme.css | 5 ++ public/themes/nova-alt/theme.css | 5 ++ public/themes/nova-vue/theme.css | 5 ++ public/themes/nova/theme.css | 5 ++ public/themes/rhea/theme.css | 5 ++ public/themes/saga-blue/theme.css | 5 ++ public/themes/saga-green/theme.css | 5 ++ public/themes/saga-orange/theme.css | 5 ++ public/themes/saga-purple/theme.css | 5 ++ public/themes/soho-dark/theme.css | 5 ++ public/themes/soho-light/theme.css | 5 ++ public/themes/tailwind-light/theme.css | 5 ++ public/themes/vela-blue/theme.css | 5 ++ public/themes/vela-green/theme.css | 5 ++ public/themes/vela-orange/theme.css | 5 ++ public/themes/vela-purple/theme.css | 5 ++ public/themes/viva-dark/theme.css | 5 ++ public/themes/viva-light/theme.css | 5 ++ 79 files changed, 466 insertions(+) create mode 100644 doc/dropdown/TickDoc.vue diff --git a/doc/dropdown/TickDoc.vue b/doc/dropdown/TickDoc.vue new file mode 100644 index 000000000..e35e594d7 --- /dev/null +++ b/doc/dropdown/TickDoc.vue @@ -0,0 +1,75 @@ + + + diff --git a/pages/dropdown/index.vue b/pages/dropdown/index.vue index 84ec7aa3e..fcf76c9d2 100755 --- a/pages/dropdown/index.vue +++ b/pages/dropdown/index.vue @@ -24,6 +24,7 @@ import InvalidDoc from '@/doc/dropdown/InvalidDoc.vue'; import LazyVirtualScrollDoc from '@/doc/dropdown/LazyVirtualScrollDoc.vue'; import LoadingStateDoc from '@/doc/dropdown/LoadingStateDoc.vue'; import TemplateDoc from '@/doc/dropdown/TemplateDoc.vue'; +import TickDoc from '@/doc/dropdown/TickDoc.vue'; import VirtualScrollDoc from '@/doc/dropdown/VirtualScrollDoc.vue'; import PTComponent from '@/doc/dropdown/pt/index.vue'; import ThemingDoc from '@/doc/dropdown/theming/index.vue'; @@ -42,6 +43,11 @@ export default { label: 'Basic', component: BasicDoc }, + { + id: 'tick', + label: 'Tick', + component: TickDoc + }, { id: 'editable', label: 'Editable', diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index 9efb38bef..19404b8c6 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index 3cbb68a9e..1855f4f21 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index 8e660423d..450631fc3 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index d029067fa..76c8c0190 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/aura-dark-amber/theme.css b/public/themes/aura-dark-amber/theme.css index e9c811e93..6676b781a 100644 --- a/public/themes/aura-dark-amber/theme.css +++ b/public/themes/aura-dark-amber/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-blue/theme.css b/public/themes/aura-dark-blue/theme.css index 0bb55bb72..8c9364d8b 100644 --- a/public/themes/aura-dark-blue/theme.css +++ b/public/themes/aura-dark-blue/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-cyan/theme.css b/public/themes/aura-dark-cyan/theme.css index a8c3319fb..ec9c54869 100644 --- a/public/themes/aura-dark-cyan/theme.css +++ b/public/themes/aura-dark-cyan/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-green/theme.css b/public/themes/aura-dark-green/theme.css index a912219ed..6793ef9c7 100644 --- a/public/themes/aura-dark-green/theme.css +++ b/public/themes/aura-dark-green/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-indigo/theme.css b/public/themes/aura-dark-indigo/theme.css index a196184ee..00b98dce2 100644 --- a/public/themes/aura-dark-indigo/theme.css +++ b/public/themes/aura-dark-indigo/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-lime/theme.css b/public/themes/aura-dark-lime/theme.css index 19c9b7965..99aea31ae 100644 --- a/public/themes/aura-dark-lime/theme.css +++ b/public/themes/aura-dark-lime/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-noir/theme.css b/public/themes/aura-dark-noir/theme.css index cb5ef43d2..755dafec0 100644 --- a/public/themes/aura-dark-noir/theme.css +++ b/public/themes/aura-dark-noir/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-pink/theme.css b/public/themes/aura-dark-pink/theme.css index c5ef85a12..99d05c18f 100644 --- a/public/themes/aura-dark-pink/theme.css +++ b/public/themes/aura-dark-pink/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-purple/theme.css b/public/themes/aura-dark-purple/theme.css index 5b003d302..bcd432993 100644 --- a/public/themes/aura-dark-purple/theme.css +++ b/public/themes/aura-dark-purple/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-dark-teal/theme.css b/public/themes/aura-dark-teal/theme.css index a92e78131..1ec4fd4cc 100644 --- a/public/themes/aura-dark-teal/theme.css +++ b/public/themes/aura-dark-teal/theme.css @@ -1028,6 +1028,11 @@ color: #ffffff; background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-amber/theme.css b/public/themes/aura-light-amber/theme.css index 47d19efc5..040019f7c 100644 --- a/public/themes/aura-light-amber/theme.css +++ b/public/themes/aura-light-amber/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-blue/theme.css b/public/themes/aura-light-blue/theme.css index d5c8cb7f0..5c396a673 100644 --- a/public/themes/aura-light-blue/theme.css +++ b/public/themes/aura-light-blue/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-cyan/theme.css b/public/themes/aura-light-cyan/theme.css index 52e209b03..c5099f90a 100644 --- a/public/themes/aura-light-cyan/theme.css +++ b/public/themes/aura-light-cyan/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-green/theme.css b/public/themes/aura-light-green/theme.css index 94b0e4d58..3f0e546a4 100644 --- a/public/themes/aura-light-green/theme.css +++ b/public/themes/aura-light-green/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-indigo/theme.css b/public/themes/aura-light-indigo/theme.css index ae80c9a56..54389249a 100644 --- a/public/themes/aura-light-indigo/theme.css +++ b/public/themes/aura-light-indigo/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-lime/theme.css b/public/themes/aura-light-lime/theme.css index ebd4bd367..a6c883c1d 100644 --- a/public/themes/aura-light-lime/theme.css +++ b/public/themes/aura-light-lime/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-noir/theme.css b/public/themes/aura-light-noir/theme.css index 12b14a593..574b8bd48 100644 --- a/public/themes/aura-light-noir/theme.css +++ b/public/themes/aura-light-noir/theme.css @@ -1034,6 +1034,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-pink/theme.css b/public/themes/aura-light-pink/theme.css index a14a57472..9c7d6cf94 100644 --- a/public/themes/aura-light-pink/theme.css +++ b/public/themes/aura-light-pink/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-purple/theme.css b/public/themes/aura-light-purple/theme.css index 935efcbcf..4eb9a7255 100644 --- a/public/themes/aura-light-purple/theme.css +++ b/public/themes/aura-light-purple/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/aura-light-teal/theme.css b/public/themes/aura-light-teal/theme.css index 509a14b28..4c86e5038 100644 --- a/public/themes/aura-light-teal/theme.css +++ b/public/themes/aura-light-teal/theme.css @@ -1030,6 +1030,11 @@ color: #1e293b; background: #f1f5f9; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.5rem 0.75rem; diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index e66355333..39102d4ed 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -1013,6 +1013,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index afa69427e..7111f28d3 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -1013,6 +1013,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 5b9baf6e1..f7a882466 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -1013,6 +1013,11 @@ color: #212529; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index e52763b00..5882be810 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -1013,6 +1013,11 @@ color: #212529; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css index 42b411040..6d31fdce9 100644 --- a/public/themes/fluent-light/theme.css +++ b/public/themes/fluent-light/theme.css @@ -1009,6 +1009,11 @@ color: #323130; background: #f3f2f1; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 0.5rem; diff --git a/public/themes/lara-dark-amber/theme.css b/public/themes/lara-dark-amber/theme.css index 5789996ea..3d7220be9 100644 --- a/public/themes/lara-dark-amber/theme.css +++ b/public/themes/lara-dark-amber/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-blue/theme.css b/public/themes/lara-dark-blue/theme.css index c6605d318..af19c3903 100644 --- a/public/themes/lara-dark-blue/theme.css +++ b/public/themes/lara-dark-blue/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-cyan/theme.css b/public/themes/lara-dark-cyan/theme.css index f4f9b234a..a8aa8b384 100644 --- a/public/themes/lara-dark-cyan/theme.css +++ b/public/themes/lara-dark-cyan/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-green/theme.css b/public/themes/lara-dark-green/theme.css index d9feac904..65f3c91aa 100644 --- a/public/themes/lara-dark-green/theme.css +++ b/public/themes/lara-dark-green/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-indigo/theme.css b/public/themes/lara-dark-indigo/theme.css index 38a548ca2..f9a93493a 100644 --- a/public/themes/lara-dark-indigo/theme.css +++ b/public/themes/lara-dark-indigo/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-pink/theme.css b/public/themes/lara-dark-pink/theme.css index c76d25e9a..c008b7460 100644 --- a/public/themes/lara-dark-pink/theme.css +++ b/public/themes/lara-dark-pink/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-purple/theme.css b/public/themes/lara-dark-purple/theme.css index f15a1b41b..94bba9416 100644 --- a/public/themes/lara-dark-purple/theme.css +++ b/public/themes/lara-dark-purple/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-dark-teal/theme.css b/public/themes/lara-dark-teal/theme.css index 7cc4976da..30b989011 100644 --- a/public/themes/lara-dark-teal/theme.css +++ b/public/themes/lara-dark-teal/theme.css @@ -1028,6 +1028,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-amber/theme.css b/public/themes/lara-light-amber/theme.css index 45ba64426..87c6502e7 100644 --- a/public/themes/lara-light-amber/theme.css +++ b/public/themes/lara-light-amber/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-blue/theme.css b/public/themes/lara-light-blue/theme.css index 56c0ca5e3..3c60bf55e 100644 --- a/public/themes/lara-light-blue/theme.css +++ b/public/themes/lara-light-blue/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-cyan/theme.css b/public/themes/lara-light-cyan/theme.css index 26baf12da..70b9c1a95 100644 --- a/public/themes/lara-light-cyan/theme.css +++ b/public/themes/lara-light-cyan/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-green/theme.css b/public/themes/lara-light-green/theme.css index bbbdacb39..70acfdca4 100644 --- a/public/themes/lara-light-green/theme.css +++ b/public/themes/lara-light-green/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-indigo/theme.css b/public/themes/lara-light-indigo/theme.css index e934a8238..f92797dec 100644 --- a/public/themes/lara-light-indigo/theme.css +++ b/public/themes/lara-light-indigo/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-pink/theme.css b/public/themes/lara-light-pink/theme.css index db8f5b241..5d075b08b 100644 --- a/public/themes/lara-light-pink/theme.css +++ b/public/themes/lara-light-pink/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-purple/theme.css b/public/themes/lara-light-purple/theme.css index 3ed223923..fc0cb6d3a 100644 --- a/public/themes/lara-light-purple/theme.css +++ b/public/themes/lara-light-purple/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/lara-light-teal/theme.css b/public/themes/lara-light-teal/theme.css index b85e5cbc1..b2e684c03 100644 --- a/public/themes/lara-light-teal/theme.css +++ b/public/themes/lara-light-teal/theme.css @@ -1028,6 +1028,11 @@ color: #4b5563; background: #f3f4f6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index 40a96634b..7b5acca4d 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -1013,6 +1013,11 @@ color: #dedede; background: #4c4c4c; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index 75a56de31..4122ca968 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -1013,6 +1013,11 @@ color: #dedede; background: #4c4c4c; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index 94f6a37dd..32f5a8545 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -1013,6 +1013,11 @@ color: #dedede; background: #4c4c4c; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index dc0df8835..f3aaa270a 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -1013,6 +1013,11 @@ color: #dedede; background: #4c4c4c; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index e99cb0db6..3847dbc67 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -1033,6 +1033,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 1rem; diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index c38d151d0..cac42c9eb 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -1033,6 +1033,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 1rem; diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index f8163e31f..f0bc3364c 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -1033,6 +1033,11 @@ color: rgba(0, 0, 0, 0.87); background: rgba(0, 0, 0, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 1rem; diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index 455edd0ee..a655dbfba 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -1033,6 +1033,11 @@ color: rgba(0, 0, 0, 0.87); background: rgba(0, 0, 0, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 1rem; diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index 94ae7c547..168f7b1ef 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -1033,6 +1033,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem; diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index 20a8f6dff..3391acea1 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -1033,6 +1033,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem; diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 744b40e24..0d06b667d 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -1033,6 +1033,11 @@ color: rgba(0, 0, 0, 0.87); background: rgba(0, 0, 0, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem; diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index d86b3c656..222f14b13 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -1033,6 +1033,11 @@ color: rgba(0, 0, 0, 0.87); background: rgba(0, 0, 0, 0.04); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem; diff --git a/public/themes/mira/theme.css b/public/themes/mira/theme.css index 32ce1727c..483c4e4d6 100644 --- a/public/themes/mira/theme.css +++ b/public/themes/mira/theme.css @@ -1037,6 +1037,11 @@ color: #4C566A; background: transparent; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/nano/theme.css b/public/themes/nano/theme.css index c050528d1..6598fafad 100644 --- a/public/themes/nano/theme.css +++ b/public/themes/nano/theme.css @@ -1009,6 +1009,11 @@ color: #343a3f; background: #dde1e6; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.25rem 0.5rem; diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index 40b7d61bb..e9e4a3dcc 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -1009,6 +1009,11 @@ color: #333333; background: #eaeaea; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index 88e75cca5..ee3745f2f 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -1013,6 +1013,11 @@ color: #333333; background: #eaeaea; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index 4f6c0304f..ec9d4ea72 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -1013,6 +1013,11 @@ color: #333333; background: #eaeaea; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index b36bf357a..12d4b7b6d 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -1013,6 +1013,11 @@ color: #333333; background: #eaeaea; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index bf57b90f1..21f3310e8 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -1009,6 +1009,11 @@ color: #666666; background: #f4f4f4; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.857rem; diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index 57d08d11a..d3eef0d79 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -1009,6 +1009,11 @@ color: #495057; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index 9694c6377..0c85fbec3 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -1009,6 +1009,11 @@ color: #495057; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index e7f45a52c..d75d9e921 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -1009,6 +1009,11 @@ color: #495057; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index 41273af7f..19ea016e3 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -1009,6 +1009,11 @@ color: #495057; background: #e9ecef; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/soho-dark/theme.css b/public/themes/soho-dark/theme.css index 27d85833e..fca35c9ae 100644 --- a/public/themes/soho-dark/theme.css +++ b/public/themes/soho-dark/theme.css @@ -1033,6 +1033,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/soho-light/theme.css b/public/themes/soho-light/theme.css index d6e208397..0733e8541 100644 --- a/public/themes/soho-light/theme.css +++ b/public/themes/soho-light/theme.css @@ -1033,6 +1033,11 @@ color: #043d75; background: #f6f9fc; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1.25rem; diff --git a/public/themes/tailwind-light/theme.css b/public/themes/tailwind-light/theme.css index a3b426e1d..9d55f85ca 100644 --- a/public/themes/tailwind-light/theme.css +++ b/public/themes/tailwind-light/theme.css @@ -1044,6 +1044,11 @@ color: #18181B; background: #f4f4f5; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index 7422e72f8..d1bb0839f 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index a9a14f161..b2f0acc9a 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index a84c43e0c..fe3a1ca26 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index b14175abf..7a3739dda 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -1009,6 +1009,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(255, 255, 255, 0.03); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/viva-dark/theme.css b/public/themes/viva-dark/theme.css index bde93e258..c54e307be 100644 --- a/public/themes/viva-dark/theme.css +++ b/public/themes/viva-dark/theme.css @@ -1041,6 +1041,11 @@ color: rgba(255, 255, 255, 0.87); background: rgba(158, 173, 230, 0.08); } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem; diff --git a/public/themes/viva-light/theme.css b/public/themes/viva-light/theme.css index 350abe188..747069b3c 100644 --- a/public/themes/viva-light/theme.css +++ b/public/themes/viva-light/theme.css @@ -1041,6 +1041,11 @@ color: #6c6c6c; background: #edf0fA; } + .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-tick-icon { + position: relative; + margin-left: -0.5rem; + margin-right: 0.5rem; + } .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { margin: 0; padding: 0.75rem 1rem;