From 73b7565e213e5db9a16407c647970ad21913866f Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 7 Apr 2025 16:17:04 +0200 Subject: [PATCH] STYLE added styling for 'draft' post status in artisans list for improved visual feedback --- resources/css/admin-style.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/resources/css/admin-style.css b/resources/css/admin-style.css index c517f33..5836d4d 100644 --- a/resources/css/admin-style.css +++ b/resources/css/admin-style.css @@ -118,6 +118,7 @@ body.post-type-artisans { .subsubsub { .all, .publish, + .draft, .pending, .trash, .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 { @apply border-neutral-700; transition: all 0.6s;