115 lines
2.1 KiB
CSS
115 lines
2.1 KiB
CSS
.gestion-artisans {
|
|
@apply px-12;
|
|
.filter-artisans {
|
|
@apply flex gap-1 items-center pt-4;
|
|
label {
|
|
@apply mr-8;
|
|
}
|
|
}
|
|
h2.page-title {
|
|
@apply text-2xl font-medium text-neutral-600;
|
|
}
|
|
}
|
|
|
|
.filters {
|
|
@apply flex gap-1 items-center pt-4 mb-12;
|
|
|
|
a {
|
|
border: none !important;
|
|
&.filter-active {
|
|
@apply bg-neutral-500 text-white opacity-20 pointer-events-none;
|
|
}
|
|
&:not(.filter-active) {
|
|
@apply bg-patrimoine-sante-securite text-white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|