pull/5161/head
tugcekucukoglu 2024-01-24 14:54:30 +03:00
commit ef7b07d1e6
82 changed files with 472 additions and 6 deletions

View File

@ -132,11 +132,11 @@ export default {
}, },
highlightOnSelect: { highlightOnSelect: {
type: Boolean, type: Boolean,
default: false default: true
}, },
showTick: { showTick: {
type: Boolean, type: Boolean,
default: true default: false
}, },
filterMessage: { filterMessage: {
type: String, type: String,

View File

@ -436,12 +436,12 @@ export interface DropdownProps {
focusOnHover?: boolean | undefined; focusOnHover?: boolean | undefined;
/** /**
* Whether the selected option will be add highlight class. * Whether the selected option will be add highlight class.
* @defaultValue false * @defaultValue true
*/ */
highlightOnSelect?: boolean | undefined; highlightOnSelect?: boolean | undefined;
/** /**
* Whether the selected option will be shown with a tick. * Whether the selected option will be shown with a tick.
* @defaultValue true * @defaultValue false
*/ */
showTick?: boolean | undefined; showTick?: boolean | undefined;
/** /**

View File

@ -24267,7 +24267,7 @@
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "boolean", "type": "boolean",
"default": "false", "default": "true",
"description": "Whether the selected option will be add highlight class." "description": "Whether the selected option will be add highlight class."
}, },
{ {
@ -24275,7 +24275,7 @@
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "boolean", "type": "boolean",
"default": "true", "default": "false",
"description": "Whether the selected option will be shown with a tick." "description": "Whether the selected option will be shown with a tick."
}, },
{ {

75
doc/dropdown/TickDoc.vue Normal file
View File

@ -0,0 +1,75 @@
<template>
<DocSectionText v-bind="$attrs">
<p>An alternative way to highlight the selected option is displaying a tick instead.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" showTick :highlightOnSelect="false" class="w-full md:w-14rem" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
selectedCity: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
],
code: {
basic: `
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" showTick :highlightOnSelect="false" class="w-full md:w-14rem" />
`,
options: `
<template>
<div class="card flex justify-content-center">
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" showTick :highlightOnSelect="false" class="w-full md:w-14rem" />
</div>
</template>
<script>
export default {
data() {
return {
selectedCity: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]
};
}
};
<\/script>
`,
composition: `
<template>
<div class="card flex justify-content-center">
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" showTick :highlightOnSelect="false" class="w-full md:w-14rem" />
</div>
</template>
<script setup>
import { ref } from "vue";
const selectedCity = ref();
const cities = ref([
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]);
<\/script>
`
}
};
}
};
</script>

View File

@ -24,6 +24,7 @@ import InvalidDoc from '@/doc/dropdown/InvalidDoc.vue';
import LazyVirtualScrollDoc from '@/doc/dropdown/LazyVirtualScrollDoc.vue'; import LazyVirtualScrollDoc from '@/doc/dropdown/LazyVirtualScrollDoc.vue';
import LoadingStateDoc from '@/doc/dropdown/LoadingStateDoc.vue'; import LoadingStateDoc from '@/doc/dropdown/LoadingStateDoc.vue';
import TemplateDoc from '@/doc/dropdown/TemplateDoc.vue'; import TemplateDoc from '@/doc/dropdown/TemplateDoc.vue';
import TickDoc from '@/doc/dropdown/TickDoc.vue';
import VirtualScrollDoc from '@/doc/dropdown/VirtualScrollDoc.vue'; import VirtualScrollDoc from '@/doc/dropdown/VirtualScrollDoc.vue';
import PTComponent from '@/doc/dropdown/pt/index.vue'; import PTComponent from '@/doc/dropdown/pt/index.vue';
import ThemingDoc from '@/doc/dropdown/theming/index.vue'; import ThemingDoc from '@/doc/dropdown/theming/index.vue';
@ -42,6 +43,11 @@ export default {
label: 'Basic', label: 'Basic',
component: BasicDoc component: BasicDoc
}, },
{
id: 'tick',
label: 'Tick',
component: TickDoc
},
{ {
id: 'editable', id: 'editable',
label: 'Editable', label: 'Editable',

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1028,6 +1028,11 @@
color: #ffffff; color: #ffffff;
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1034,6 +1034,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1030,6 +1030,11 @@
color: #1e293b; color: #1e293b;
background: #f1f5f9; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;

View File

@ -1013,6 +1013,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1013,6 +1013,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1013,6 +1013,11 @@
color: #212529; color: #212529;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1013,6 +1013,11 @@
color: #212529; color: #212529;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: #323130; color: #323130;
background: #f3f2f1; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 0.5rem; padding: 0.75rem 0.5rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1028,6 +1028,11 @@
color: #4b5563; color: #4b5563;
background: #f3f4f6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1013,6 +1013,11 @@
color: #dedede; color: #dedede;
background: #4c4c4c; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #dedede; color: #dedede;
background: #4c4c4c; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #dedede; color: #dedede;
background: #4c4c4c; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #dedede; color: #dedede;
background: #4c4c4c; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 1rem; padding: 1rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 1rem; padding: 1rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
background: rgba(0, 0, 0, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 1rem; padding: 1rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
background: rgba(0, 0, 0, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 1rem; padding: 1rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem; padding: 0.75rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem; padding: 0.75rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
background: rgba(0, 0, 0, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem; padding: 0.75rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(0, 0, 0, 0.87); color: rgba(0, 0, 0, 0.87);
background: rgba(0, 0, 0, 0.04); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem; padding: 0.75rem;

View File

@ -1037,6 +1037,11 @@
color: #4C566A; color: #4C566A;
background: transparent; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: #343a3f; color: #343a3f;
background: #dde1e6; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.25rem 0.5rem; padding: 0.25rem 0.5rem;

View File

@ -1009,6 +1009,11 @@
color: #333333; color: #333333;
background: #eaeaea; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #333333; color: #333333;
background: #eaeaea; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #333333; color: #333333;
background: #eaeaea; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1013,6 +1013,11 @@
color: #333333; color: #333333;
background: #eaeaea; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1009,6 +1009,11 @@
color: #666666; color: #666666;
background: #f4f4f4; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.857rem; padding: 0.857rem;

View File

@ -1009,6 +1009,11 @@
color: #495057; color: #495057;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: #495057; color: #495057;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: #495057; color: #495057;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: #495057; color: #495057;
background: #e9ecef; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1033,6 +1033,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1033,6 +1033,11 @@
color: #043d75; color: #043d75;
background: #f6f9fc; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;

View File

@ -1044,6 +1044,11 @@
color: #18181B; color: #18181B;
background: #f4f4f5; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1009,6 +1009,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(255, 255, 255, 0.03); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1041,6 +1041,11 @@
color: rgba(255, 255, 255, 0.87); color: rgba(255, 255, 255, 0.87);
background: rgba(158, 173, 230, 0.08); 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;

View File

@ -1041,6 +1041,11 @@
color: #6c6c6c; color: #6c6c6c;
background: #edf0fA; 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 { .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
margin: 0; margin: 0;
padding: 0.75rem 1rem; padding: 0.75rem 1rem;