From d42c13a9c6d71edb083f6e8162b30f1c197be969 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Wed, 30 Dec 2020 23:39:07 -0800 Subject: [PATCH] Reorganized navbar Updated search field, new user menu --- .../app-frame/app-frame.component.html | 58 +++++++++++-------- .../app-frame/app-frame.component.scss | 45 ++++++++++---- 2 files changed, 70 insertions(+), 33 deletions(-) diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index d191ec0de..9d6c4924f 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -1,17 +1,43 @@
@@ -105,13 +131,6 @@  Logs - -
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.scss b/src-ui/src/app/components/app-frame/app-frame.component.scss index 5ace8a2ff..433fe3054 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.scss +++ b/src-ui/src/app/components/app-frame/app-frame.component.scss @@ -72,17 +72,42 @@ padding-top: .75rem; padding-bottom: .75rem; font-size: 1rem; - background-color: rgba(0, 0, 0, .25); - box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); } -.navbar .navbar-toggler { - top: .25rem; - right: 1rem; -} +.navbar .search-form-container { + max-width: 550px; + position: relative; -.navbar .form-control { - padding: .75rem 1rem; - border-width: 0; - border-radius: 0; + svg { + position: absolute; + left: 1.8em; + color: rgba(255, 255, 255, 0.6); + } + + &:focus-within { + svg { + display: none; + } + } + + .form-control { + color: rgba(255, 255, 255, 0.5); + background-color: rgba(0, 0, 0, 0.2); + padding-left: 1.8rem; + border-color: rgba(255, 255, 255, 0.5); + transition: flex 0.3s ease; + max-width: 600px; + min-width: 300px; // 1/2 max + + &::placeholder { + color: rgba(255, 255, 255, 0.5); + } + + &:focus { + background-color: #fff; + color: initial; + flex-grow: 1; + padding-left: 0.5rem; + } + } }