From cf87c3ff035fd0368488ea7c96b5205b569cb735 Mon Sep 17 00:00:00 2001 From: jamey Date: Tue, 24 Feb 2026 14:35:54 +0000 Subject: [PATCH] add base padding to themed-input and fix contact form selector themed-input had no padding in the base style, so inputs were rendering with browser-default 1px/2px padding. Added 0.5rem 0.75rem as the base. Also fixed the contact form CSS which was targeting .shop-input (a class that doesn't exist on rendered elements) instead of .themed-input. Co-Authored-By: Claude Sonnet 4.6 --- assets/css/shop/components.css | 3 +-- assets/css/theme-layer2-attributes.css | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/shop/components.css b/assets/css/shop/components.css index 77a20da..253fcfb 100644 --- a/assets/css/shop/components.css +++ b/assets/css/shop/components.css @@ -1679,8 +1679,7 @@ color: var(--t-text-primary); } - .contact-form .shop-input, - .contact-form .shop-textarea { + .contact-form .themed-input { width: 100%; padding: 0.5rem 1rem; } diff --git a/assets/css/theme-layer2-attributes.css b/assets/css/theme-layer2-attributes.css index 74d4b89..c039f09 100644 --- a/assets/css/theme-layer2-attributes.css +++ b/assets/css/theme-layer2-attributes.css @@ -249,6 +249,7 @@ color: var(--t-text-primary); border: 1px solid var(--t-border-default); border-radius: var(--t-radius-input); + padding: 0.5rem 0.75rem; &:focus { outline: none;