diff --git a/src_assets/common/assets/web/Navbar.vue b/src_assets/common/assets/web/Navbar.vue index 2a63113da0c..fde81d6d030 100644 --- a/src_assets/common/assets/web/Navbar.vue +++ b/src_assets/common/assets/web/Navbar.vue @@ -1,57 +1,61 @@ @@ -61,19 +65,28 @@ export default { } .header .nav-link { - color: var(--bs-dark); + color: rgba(0, 0, 0, .65) !important; } .header .nav-link.active { - color: var(--bs-dark) !important; + color: rgb(0, 0, 0) !important; font-weight: 500; } .header .nav-link:hover { - color: var(--bs-dark) !important; + color: rgb(0, 0, 0) !important; font-weight: 500; } +.header .navbar-toggler { + color: rgba(var(--bs-dark-rgb), .65) !important; + border: var(--bs-border-width) solid rgba(var(--bs-dark-rgb), 0.15) !important; +} + +.header .navbar-toggler-icon { + --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; +} + .form-control::placeholder { opacity: 0.5; }