From 9831b5fb570d717008fc7afc93eaf86c66d9ab1c Mon Sep 17 00:00:00 2001 From: Fahim Salam Chowdhury Date: Wed, 11 Jun 2025 18:29:22 +0600 Subject: [PATCH 1/4] fix: primary buttons text color is not applying issue --- core/css/server.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index d479661..40d1f3f 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -163,7 +163,7 @@ input[type="button"], input[type="submit"], input[type="reset"] { background-color: var(--color-primary); - color: white; + color: white !important; border-color: var(--color-primary); } @@ -1886,4 +1886,4 @@ textarea { } #header-menu-user-menu .header-menu__content{ padding: 10px; -} \ No newline at end of file +} -- GitLab From caee4e7a1261d04e7d6988bc89bc176b7d66c9bc Mon Sep 17 00:00:00 2001 From: Fahim Salam Chowdhury Date: Wed, 11 Jun 2025 19:10:47 +0600 Subject: [PATCH 2/4] fix: white important messing other colors --- core/css/server.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index 40d1f3f..a752bd0 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -163,10 +163,14 @@ input[type="button"], input[type="submit"], input[type="reset"] { background-color: var(--color-primary); - color: white !important; + color: white; border-color: var(--color-primary); } +.button-vue--vue-primary { + color: white; +} + input.primary:not(:disabled):hover, input.primary:not(:disabled):focus, button.primary:not(:disabled):hover, -- GitLab From faaedead44685bb80164b9fdc58e9e4016023b3f Mon Sep 17 00:00:00 2001 From: Fahim Salam Chowdhury Date: Wed, 11 Jun 2025 19:14:51 +0600 Subject: [PATCH 3/4] fix: add imporatant on button-vue--vue-primary color --- core/css/server.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index a752bd0..d87b5b0 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -168,7 +168,7 @@ input[type="reset"] { } .button-vue--vue-primary { - color: white; + color: white !important; } input.primary:not(:disabled):hover, -- GitLab From 7d27b4e229c25ed9c89537648634168353529fb7 Mon Sep 17 00:00:00 2001 From: Fahim Salam Chowdhury Date: Thu, 12 Jun 2025 17:13:14 +0600 Subject: [PATCH 4/4] rnd: remove modification of primary color change --- core/css/server.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index d87b5b0..34d8535 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -167,10 +167,6 @@ input[type="reset"] { border-color: var(--color-primary); } -.button-vue--vue-primary { - color: white !important; -} - input.primary:not(:disabled):hover, input.primary:not(:disabled):focus, button.primary:not(:disabled):hover, -- GitLab