From df0239c5483eecc1bee3d29fa2fda82c227a8e39 Mon Sep 17 00:00:00 2001 From: "John.C" <155592353+dev-johnn@users.noreply.github.com> Date: Tue, 19 Mar 2024 16:35:47 +0000 Subject: [PATCH] Fix navbar Search text visibility and background color on scroll (#45594) * Fix search text * Fix search text * Fix search text --- assets/scss/_custom.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/assets/scss/_custom.scss b/assets/scss/_custom.scss index 887faacc2b..30875f18f3 100644 --- a/assets/scss/_custom.scss +++ b/assets/scss/_custom.scss @@ -239,11 +239,17 @@ body.td-404 main .error-details { } } +.search-item.nav-item { + input, input::placeholder { + color: black; + } +} + .flip-nav .search-item { - .td-search-input { + .td-search-input, .search-bar { background-color: $medium-grey; } - input, textarea { + input, input::placeholder, .search-icon { color: white; } textarea:focus, input:focus { @@ -1069,4 +1075,4 @@ div.alert > em.javascript-required { border: none; outline: none; padding: .5em 0 .5em 0; -} \ No newline at end of file +}