From c3b2938f727f6307a7170d7a53b3d1df99cb61a6 Mon Sep 17 00:00:00 2001 From: Marcus Quinn Date: Fri, 14 Mar 2025 05:04:46 +0000 Subject: [PATCH] Fix theme card button positioning: - Align actions background with title bar - Adjust padding and height to match title area - Add z-index for proper layering --- admin/settings.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/settings.php b/admin/settings.php index 926a2c0..87bf544 100644 --- a/admin/settings.php +++ b/admin/settings.php @@ -340,17 +340,17 @@ function wpa_superstar_ajax_get_theme() { white-space: nowrap; text-overflow: ellipsis; background: #fff; + position: relative; } .theme-browser .theme .theme-actions { position: absolute; bottom: 0; right: 0; - height: 38px; - padding: 9px 10px 0; + padding: 9px 15px; background: rgba(244,244,244,.7); border-left: 1px solid rgba(0,0,0,.05); - opacity: 0; - transition: opacity .1s ease-in-out; + height: 30px; + z-index: 1; } .theme-browser .theme:hover .theme-actions, .theme-browser .theme:focus .theme-actions,