From e13dbf33651ad6e0edf420bc5bda109c5f8bfb26 Mon Sep 17 00:00:00 2001 From: Szymon Kasprzyk Date: Thu, 26 Mar 2026 19:27:47 +0100 Subject: [PATCH] removes box shadow --- .../plugins/vf-events/templates/partials/chatbot.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-content/plugins/vf-events/templates/partials/chatbot.php b/wp-content/plugins/vf-events/templates/partials/chatbot.php index 528e08b42..8321406d3 100644 --- a/wp-content/plugins/vf-events/templates/partials/chatbot.php +++ b/wp-content/plugins/vf-events/templates/partials/chatbot.php @@ -543,14 +543,16 @@ class="vf-chatbot-welcome" flex: 0 0 auto; } .vf-events-chatbot-event-card { + border-radius: 4px; position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-content: flex-end; padding: 0.5rem 1rem; + border: 1px solid #000 !important; background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 18%, rgba(0, 0, 0, 0) 75%); - box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, .4); + /* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, .4); */ transition: padding 720ms cubic-bezier(0.22, 1, 0.36, 1), background 720ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1); } .vf-events-chatbot-badge { @@ -604,7 +606,7 @@ class="vf-chatbot-welcome" padding-top: 0.75rem; padding-bottom: 0.75rem; background: linear-gradient(360deg, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 0.15) 100%); - box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, .35); + /* box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, .35); */ } .vf-events-chatbot-event-hero--compact { margin: 6px 6px 1rem 6px !important; @@ -632,4 +634,9 @@ class="vf-chatbot-welcome" border-radius: 6px; align-items: center; } + +.vf-chatbot-action-prompt__link { + color: #000 !important; + border: 1px solid #000 !important; +}