Metiers_du_patrimoine_theme/resources/css/dashboard/gestion-artisans.css

98 lines
1.8 KiB
CSS

.gestion-artisans {
@apply px-12;
.filter-artisans {
@apply flex gap-1 items-center pt-4;
label {
@apply mr-8;
}
}
}
.group-artisans {
@apply mb-24;
&__title {
@apply text-base font-medium text-white px-4 py-2 rounded-t-xl;
}
&__post-count {
@apply text-sm text-white;
}
&__no-results {
@apply text-center text-sm text-neutral-500;
}
&__list {
li {
@apply flex justify-between items-center pl-4 py-2;
border-left: 4px solid theme('colors.rose.300');
&:nth-child(even) {
@apply bg-stone-50;
}
a {
@apply w-fit block text-base;
}
.status-state {
@apply mx-0;
}
}
}
&--action-required {
.group-artisans__title {
@apply bg-rose-600;
}
}
&--to-contact,
&--to-actualize {
.group-artisans__title {
@apply bg-yellow-500;
}
.group-artisans__list__item {
border-left: 4px solid theme('colors.yellow.400');
}
}
&--ongoing,
&--waiting-feedback {
.group-artisans__title {
@apply bg-blue-500;
}
.group-artisans__list__item {
border-left: 4px solid theme('colors.blue.400');
}
}
&--ok {
.group-artisans__title {
@apply bg-green-700;
}
.group-artisans__list__item {
border-left: 4px solid theme('colors.green.700');
}
}
}
&--ok {
@apply text-green-700;
}
&--deleted {
@apply text-rose-700;
}
&--to_actualize {
@apply text-amber-700;
}
&--to_contact {
@apply text-yellow-700;
}
&--waiting_feedback,
&--ongoing {
@apply text-blue-600;
}
&--rejected {
@apply text-rose-400;
}
.toplevel_page_gestion-artisans {
#wpfooter {
@apply hidden;
}
}