From e74a8bc79d034af3865f039e9408321ad40a6622 Mon Sep 17 00:00:00 2001 From: optrader Date: Sun, 23 Nov 2025 06:47:00 +0900 Subject: [PATCH] [251123] fix: DetailPanel ThemeButton-3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit πŸ• 컀밋 μ‹œκ°„: 2025. 11. 23. 06:46:59 πŸ“Š λ³€κ²½ 톡계: β€’ 총 파일: 1개 β€’ μΆ”κ°€: +30쀄 β€’ μ‚­μ œ: -4쀄 πŸ“ μˆ˜μ •λœ 파일: ~ com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less πŸ”§ μ£Όμš” λ³€κ²½ λ‚΄μš©: β€’ μ†Œκ·œλͺ¨ κΈ°λŠ₯ κ°œμ„  --- .../ProductAllSection.module.less | 34 ++++++++++++++++--- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less index 7f04ad29..59e21f93 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less @@ -740,13 +740,17 @@ height: 60px !important; padding: 20px 30px !important; background: rgba(255, 255, 255, 0.05) !important; - overflow: hidden !important; + overflow: visible !important; border-radius: 6px !important; border: none !important; justify-content: center !important; align-items: center !important; - gap: 15px !important; - display: inline-flex !important; + display: flex !important; + flex-direction: row !important; + white-space: nowrap !important; + caret-color: transparent !important; + user-select: none !important; + -webkit-user-select: none !important; color: white !important; font-size: 25px !important; @@ -755,13 +759,35 @@ line-height: 35px !important; word-wrap: break-word !important; + > * { + display: flex !important; + flex-direction: row !important; + align-items: center !important; + justify-content: center !important; + gap: 15px !important; + width: auto !important; + height: auto !important; + caret-color: transparent !important; + user-select: none !important; + -webkit-user-select: none !important; + + > * { + display: inline !important; + margin: 0 !important; + caret-color: transparent !important; + user-select: none !important; + -webkit-user-select: none !important; + } + } + &:focus { background: @PRIMARY_COLOR_RED !important; outline: none !important; + caret-color: transparent !important; } &:hover { - background: rgba(255, 255, 255, 0.08) !important; + background: @PRIMARY_COLOR_RED !important; } }