From b6ad4f7ca6c548be37b381cf2e8c7aff4ab49de1 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sat, 25 May 2024 11:52:23 +0800 Subject: [PATCH 1/2] set navigation bar color to text color --- src/styles/colors/all.navbar.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles/colors/all.navbar.css b/src/styles/colors/all.navbar.css index 3b82a93..bc9b21a 100644 --- a/src/styles/colors/all.navbar.css +++ b/src/styles/colors/all.navbar.css @@ -21,4 +21,8 @@ nav#header { nav .input-field input[type="search"], textarea { color: var(--font-color-main) !important; -} \ No newline at end of file +} + +nav .brand-logo { + color: var(--font-color-main) !important; +} From 717fde3a34d2bfe1cfa46af1b7bd63e818a2fd31 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sat, 25 May 2024 11:52:56 +0800 Subject: [PATCH 2/2] hide the container of the current object name in the navigation bar in smaller sizes --- src/styles/layouts/preferences.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/styles/layouts/preferences.css b/src/styles/layouts/preferences.css index 8235bee..943413f 100644 --- a/src/styles/layouts/preferences.css +++ b/src/styles/layouts/preferences.css @@ -1,13 +1,13 @@ /* nav [data-result-content="*"] { - + }*/ article[data-result-linked="filters"] > h2 { display: none; } -a[data-result-linked="filters"] > * { - display: none; +nav a[data-result-linked="filters"] { + display: none !important; } @media only screen and (max-width: 992px) { @@ -16,7 +16,7 @@ a[data-result-linked="filters"] > * { @media only screen and (min-width: 992px) { - a[data-result-linked="filters"] > * { - display: block; + nav a[data-result-linked="filters"] { + display: block !important; } -} \ No newline at end of file +}