Fixed transparent issues
parent
2fa543ccc2
commit
de2560a1cb
|
@ -35,6 +35,14 @@
|
||||||
class: 'sticky top-0 z-10'
|
class: 'sticky top-0 z-10'
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
|
:dt="{
|
||||||
|
headerCell: {
|
||||||
|
background: 'transparent'
|
||||||
|
},
|
||||||
|
row: {
|
||||||
|
background: 'transparent'
|
||||||
|
}
|
||||||
|
}"
|
||||||
>
|
>
|
||||||
<template #empty>There is no customer.</template>
|
<template #empty>There is no customer.</template>
|
||||||
<Column selectionMode="multiple" headerStyle="width: 1rem" style="width: 1rem"></Column>
|
<Column selectionMode="multiple" headerStyle="width: 1rem" style="width: 1rem"></Column>
|
||||||
|
|
|
@ -62,6 +62,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
|
:dt="{
|
||||||
|
headerCell: {
|
||||||
|
background: 'transparent'
|
||||||
|
},
|
||||||
|
row: {
|
||||||
|
background: 'transparent'
|
||||||
|
}
|
||||||
|
}"
|
||||||
>
|
>
|
||||||
<template #header>
|
<template #header>
|
||||||
<div class="flex xl:items-center justify-between gap-2 flex-col xl:flex-row">
|
<div class="flex xl:items-center justify-between gap-2 flex-col xl:flex-row">
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-4 flex flex-wrap gap-6 items-start justify-between">
|
<div class="mt-4 flex flex-wrap gap-6 items-center justify-between">
|
||||||
<SelectButton v-model="selectedTime" :options="timeOptions" aria-labelledby="basic" :allowEmpty="false" />
|
<SelectButton v-model="selectedTime" :options="timeOptions" aria-labelledby="basic" :allowEmpty="false" />
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<Button label="Download" icon="pi pi-download" iconPos="right" />
|
<Button label="Download" icon="pi pi-download" iconPos="right" />
|
||||||
|
@ -61,7 +61,18 @@
|
||||||
tableClass="overflow-x-auto dark:bg-surface-950"
|
tableClass="overflow-x-auto dark:bg-surface-950"
|
||||||
paginatorTemplate="PrevPageLink PageLinks NextPageLink CurrentPageReport RowsPerPageDropdown"
|
paginatorTemplate="PrevPageLink PageLinks NextPageLink CurrentPageReport RowsPerPageDropdown"
|
||||||
currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries"
|
currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries"
|
||||||
:pt="{}"
|
pt:pcpaginator:root="!bg-transparent"
|
||||||
|
:dt="{
|
||||||
|
header: {
|
||||||
|
background: 'transparent'
|
||||||
|
},
|
||||||
|
headerCell: {
|
||||||
|
background: 'transparent'
|
||||||
|
},
|
||||||
|
row: {
|
||||||
|
background: 'transparent'
|
||||||
|
}
|
||||||
|
}"
|
||||||
>
|
>
|
||||||
<Column header="Id" class="w-1/12">
|
<Column header="Id" class="w-1/12">
|
||||||
<template #body="slotProps">
|
<template #body="slotProps">
|
||||||
|
|
|
@ -391,7 +391,7 @@ export default {
|
||||||
hoverMutedColor: '{surface.300}'
|
hoverMutedColor: '{surface.300}'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
background: 'transparent',
|
background: '{surface.900}',
|
||||||
hoverBackground: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
borderColor: '{surface.700}',
|
borderColor: '{surface.700}',
|
||||||
color: '{text.color}',
|
color: '{text.color}',
|
||||||
|
|
|
@ -396,7 +396,7 @@ export default {
|
||||||
hoverMutedColor: '{surface.300}'
|
hoverMutedColor: '{surface.300}'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
background: 'transparent',
|
background: '{surface.900}',
|
||||||
hoverBackground: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
borderColor: '{surface.700}',
|
borderColor: '{surface.700}',
|
||||||
color: '{text.color}',
|
color: '{text.color}',
|
||||||
|
|
|
@ -391,7 +391,7 @@ export default {
|
||||||
hoverMutedColor: '{surface.300}'
|
hoverMutedColor: '{surface.300}'
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
background: 'transparent',
|
background: '{surface.900}',
|
||||||
hoverBackground: '{surface.700}',
|
hoverBackground: '{surface.700}',
|
||||||
borderColor: '{surface.500}',
|
borderColor: '{surface.500}',
|
||||||
color: '{text.color}',
|
color: '{text.color}',
|
||||||
|
|
Loading…
Reference in New Issue