From b4a9cd9d540d42a61bee9045d41ada392305a8d5 Mon Sep 17 00:00:00 2001 From: Akash Keshav <112591754+domesticchores@users.noreply.github.com> Date: Fri, 4 Apr 2025 14:53:32 -0400 Subject: add light/dark mode toggle, only homepage is fully functional. -ak --- ufund-ui/src/app/app.component.css | 1 - 1 file changed, 1 deletion(-) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index f4ed668..6cb44f6 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -34,7 +34,6 @@ /*}*/ a { - color: light-dark(black, white); text-decoration: none; } -- cgit v1.2.3 From 7df725c6e048ceaf5b8228f6157372c90cc9cc58 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 6 Apr 2025 15:52:10 -0400 Subject: Restore header --- ufund-ui/src/app/app.component.css | 2 -- 1 file changed, 2 deletions(-) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index 2ed8131..3f3d053 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -84,6 +84,4 @@ /* opacity: 1;*/ /* transform: translate3d(0, 0.2em, 0);*/ /*}*/ - - } -- cgit v1.2.3 From 1a70784c75ba26713e040bb44e9fbc6867079010 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sun, 6 Apr 2025 20:06:59 -0400 Subject: Remove color from * and fix toasts in light mode --- ufund-ui/src/app/app.component.css | 1 + 1 file changed, 1 insertion(+) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index 3f3d053..ff1e58c 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -54,6 +54,7 @@ /*}*/ a { + color: var(--foreground-color); text-decoration: none; } -- cgit v1.2.3 From ebeafe0a6a70da064fd97359e38f53406a58bed4 Mon Sep 17 00:00:00 2001 From: Gunther6070 Date: Mon, 7 Apr 2025 16:45:38 -0400 Subject: Added underline to currently selected page --- ufund-ui/src/app/app.component.css | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index ff1e58c..ab1e60f 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -49,10 +49,6 @@ gap: 20px; } - /*div:has(a:hover) a {*/ - /* color: light-dark(black, rgba(255, 255, 255, 0.5));*/ - /*}*/ - a { color: var(--foreground-color); text-decoration: none; @@ -62,27 +58,8 @@ text-decoration: underline; } - /*a {*/ - /* display: block;*/ - /* position: relative;*/ - /* padding: 0.1em 0;*/ - /*}*/ - - /*a::after {*/ - /* content: '';*/ - /* position: absolute;*/ - /* bottom: 4px;*/ - /* left: 0;*/ - /* width: 100%;*/ - /* height: 0.03em;*/ - /* background-color: white;*/ - /* opacity: 0;*/ - /* transition: opacity 300ms, transform 300ms;*/ - /*}*/ +} - /*a:hover::after,*/ - /*a:focus::after {*/ - /* opacity: 1;*/ - /* transform: translate3d(0, 0.2em, 0);*/ - /*}*/ +.current { + text-decoration: underline!important; } -- cgit v1.2.3 From b45f42c348d5b6ea25e0c320843e613d40c4db61 Mon Sep 17 00:00:00 2001 From: sowgro Date: Mon, 7 Apr 2025 17:09:25 -0400 Subject: Fix alignment of color mode toggle --- ufund-ui/src/app/app.component.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ufund-ui/src/app/app.component.css') diff --git a/ufund-ui/src/app/app.component.css b/ufund-ui/src/app/app.component.css index ab1e60f..6841606 100644 --- a/ufund-ui/src/app/app.component.css +++ b/ufund-ui/src/app/app.component.css @@ -61,5 +61,9 @@ } .current { - text-decoration: underline!important; + text-decoration: underline !important; +} + +#darkMode:hover { + text-decoration: none !important; } -- cgit v1.2.3