From 086bdf830467077cbb95d3b53eeb82e4ae4a1bdf Mon Sep 17 00:00:00 2001 From: Chris Harris Date: Fri, 16 Jan 2026 21:37:03 -0800 Subject: [PATCH 1/4] Submitting awesome, just seeing if everything's alright. Minor change in Who specific. --- src/lib/components/who/whoSpecific-template.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/who/whoSpecific-template.svelte b/src/lib/components/who/whoSpecific-template.svelte index 6677ff42..3b32e52e 100644 --- a/src/lib/components/who/whoSpecific-template.svelte +++ b/src/lib/components/who/whoSpecific-template.svelte @@ -63,7 +63,7 @@ Claims & Impact - Verified restoration data + Reforestation data {#if org.claims && org.claims.length > 0} From 99c3e83924d9d6eb5ef2489688d2462a380ba7ac Mon Sep 17 00:00:00 2001 From: Chris Harris Date: Fri, 16 Jan 2026 23:07:49 -0800 Subject: [PATCH 2/4] chore: remove test deployment script --- test-deploy.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 test-deploy.sh diff --git a/test-deploy.sh b/test-deploy.sh deleted file mode 100755 index b3e59d24..00000000 --- a/test-deploy.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -echo "๐Ÿงช TEST DEPLOY - Making noticeable changes..." - -TO_DIR="/Users/chrisharris/DEV/deploy2" - -# Create a test file with timestamp -echo "TEST FILE - Updated at $(date)" > "$TO_DIR/test-deploy.txt" - -# Add a comment to package.json -echo "// TEST DEPLOY COMMENT - $(date)" >> "$TO_DIR/package.json" - -echo "โœ… Test changes made! Check: $TO_DIR/test-deploy.txt" -echo "โœ… Check package.json for new comment" From 267aed25c433c4a064e5b163ec4b46c88aa28785 Mon Sep 17 00:00:00 2001 From: Chris Harris Date: Sat, 17 Jan 2026 01:56:46 -0800 Subject: [PATCH 3/4] some testing just getting ready to deploy. --- test.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.md diff --git a/test.md b/test.md new file mode 100644 index 00000000..9132c66b --- /dev/null +++ b/test.md @@ -0,0 +1 @@ +asdfasdfasdf \ No newline at end of file From 9b3a9244b98c09f076b38a5177525817070b5bbf Mon Sep 17 00:00:00 2001 From: Chris Harris Date: Fri, 16 Jan 2026 13:36:33 -0800 Subject: [PATCH 4/4] finally fix that button thing. base.css --- src/lib/styles/base.css | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/lib/styles/base.css b/src/lib/styles/base.css index 407b9084..e9e9ad2c 100644 --- a/src/lib/styles/base.css +++ b/src/lib/styles/base.css @@ -88,11 +88,27 @@ a:hover { } [data-slot='button'].bg-primary:hover { - background-color: #404040 !important; /* Lighter Grey on Hover */ + background-color: rgb(from #404040 r g b / 0.4) !important; /* 40% transparency hover */ color: var(--color-accent) !important; /* Hover text to accent color */ border-color: var(--color-border); } +/* Ghost and Outline buttons - make hover 40% transparency */ +[data-slot='button'].hover\:bg-accent:hover { + background-color: rgb(from var(--color-accent) r g b / 0.4) !important; + color: var(--color-accent-foreground) !important; +} + +/* Secondary buttons - make hover 40% transparency */ +[data-slot='button'].hover\:bg-secondary\/80:hover { + background-color: rgb(from var(--color-secondary) r g b / 0.4) !important; +} + +/* Destructive buttons - make hover 40% transparency */ +[data-slot='button'].hover\:bg-destructive\/90:hover { + background-color: rgb(from var(--color-destructive) r g b / 0.4) !important; +} + /* Shared Secondary Button Override - Address 'Solid Gold' Readability */ /* Makes secondary buttons 50% opacity by default with black text */ [data-slot='button'].bg-secondary { @@ -101,13 +117,7 @@ a:hover { border: 1px solid transparent !important; } -[data-slot='button'].bg-secondary:hover { - background-color: var(--color-secondary) !important; - color: #000000 !important; - opacity: 1 !important; -} - /* Test: Make dropdown hover translucent */ -[data-highlighted]:not([data-highlighted="false"]) { +[data-highlighted]:not([data-highlighted='false']) { background-color: color-mix(in srgb, var(--color-accent), transparent 40%) !important; }