STYLE added styling for 'draft' post status in artisans list for improved visual feedback

This commit is contained in:
Antoine M 2025-04-07 16:17:04 +02:00
parent a7266db51a
commit 73b7565e21

View File

@ -118,6 +118,7 @@ body.post-type-artisans {
.subsubsub { .subsubsub {
.all, .all,
.publish, .publish,
.draft,
.pending, .pending,
.trash, .trash,
.offline { .offline {
@ -140,6 +141,22 @@ body.post-type-artisans {
} }
} }
} }
.draft {
@apply border-neutral-400;
transition: all 0.6s;
a,
span {
@apply !text-neutral-400;
}
&:hover,
&:has(a[aria-current='page']) {
@apply bg-neutral-400;
a,
span {
@apply !text-white;
}
}
}
.offline { .offline {
@apply border-neutral-700; @apply border-neutral-700;
transition: all 0.6s; transition: all 0.6s;