From 5a6ca27ed68cc8abe99adf702d64467b3d20df15 Mon Sep 17 00:00:00 2001 From: kudo-sync-bot Date: Sun, 27 Oct 2024 03:46:50 -0700 Subject: [PATCH] =?UTF-8?q?Added=20inset=20shadow=20to=20light=20scheme=20?= =?UTF-8?q?chatbar=20=E2=86=9E=20[auto-sync=20from=20`adamlui/ai-web-exten?= =?UTF-8?q?sions`]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- greasemonkey/amazongpt.user.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/greasemonkey/amazongpt.user.js b/greasemonkey/amazongpt.user.js index a5e0854..b10aa72 100644 --- a/greasemonkey/amazongpt.user.js +++ b/greasemonkey/amazongpt.user.js @@ -3,7 +3,7 @@ // @description Adds the magic of AI to Amazon shopping // @author KudoAI // @namespace https://kudoai.com -// @version 2024.10.20.2 +// @version 2024.10.27 // @license MIT // @icon https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon48.png?v=0fddfc7 // @icon64 https://amazongpt.kudoai.com/assets/images/icons/amazongpt/black-gold-teal/icon64.png?v=0fddfc7 @@ -1596,7 +1596,8 @@ + 'font-size: 14.5px ; height: 46px ; width: 100% ; max-height: 200px ; resize: none ; ' + `position: relative ; z-index: 555 ; color: #${ ui.app.scheme == 'dark' ? 'eee' : '222' } ;` + 'margin: 3px 0 15px 0 ; padding: 13px 57px 9px 10px ;' - + `background: ${ ui.app.scheme == 'dark' ? `#515151${ config.bgAnimationsDisabled ? '' : '9e' }` : '#eeeeee9e' }}` + + `background: ${ ui.app.scheme == 'dark' ? `#515151${ config.bgAnimationsDisabled ? '' : '9e' }` : '#eeeeee9e' } ;` + + `${ ui.app.scheme == 'light' ? 'box-shadow: 0 1px 2px rgba(15,17,17,.1) inset' : '' }}` + '.fade-in { opacity: 0 ; transform: translateY(10px) }' + '.fade-in-less { opacity: 0 ; transition: opacity 0.2s ease }' + '.fade-in.active, .fade-in-less.active { opacity: 1 ; transform: translateY(0) }'