Tweak colors

This commit is contained in:
Austin 2023-03-20 20:38:11 +00:00
parent a7b7a10209
commit 8372cd3e71
2 changed files with 26 additions and 7 deletions

View File

@ -258,12 +258,11 @@ impl App {
} }
fn view_banner(&self, ctx: &Context<Self>) -> Html { fn view_banner(&self, ctx: &Context<Self>) -> Html {
let link = ctx.link();
html! { html! {
<header class="p-2 mb-3 border-bottom"> <header class="p-2 mb-3 border-bottom">
<div class="container"> <div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"> <div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mt-2 mb-lg-0 me-md-5 text-body text-decoration-none"> <a href="/" class="d-flex align-items-center mt-2 mb-lg-0 me-md-5 text-decoration-none">
<h2>{"LLDAP"}</h2> <h2>{"LLDAP"}</h2>
</a> </a>
@ -272,7 +271,7 @@ impl App {
<> <>
<li> <li>
<Link <Link
classes="nav-link px-2 text-body h6" classes="nav-link px-2 h6"
to={AppRoute::ListUsers}> to={AppRoute::ListUsers}>
<i class="bi-people me-2"></i> <i class="bi-people me-2"></i>
{"Users"} {"Users"}
@ -280,7 +279,7 @@ impl App {
</li> </li>
<li> <li>
<Link <Link
classes="nav-link px-2 text-body h6" classes="nav-link px-2 h6"
to={AppRoute::ListGroups}> to={AppRoute::ListGroups}>
<i class="bi-collection me-2"></i> <i class="bi-collection me-2"></i>
{"Groups"} {"Groups"}
@ -289,7 +288,7 @@ impl App {
</> </>
} } else { html!{} } } } } else { html!{} } }
</ul> </ul>
{ self.view_user_menu(ctx) } // TODO migrate chagnes from above { self.view_user_menu(ctx) }
<DarkModeToggle /> <DarkModeToggle />
</div> </div>
</div> </div>
@ -303,7 +302,7 @@ impl App {
html! { html! {
<div class="dropdown text-end"> <div class="dropdown text-end">
<a href="#" <a href="#"
class="d-block text-body nav-link text-decoration-none dropdown-toggle" class="d-block nav-link text-decoration-none dropdown-toggle"
id="dropdownUser" id="dropdownUser"
data-bs-toggle="dropdown" data-bs-toggle="dropdown"
aria-expanded="false"> aria-expanded="false">
@ -345,7 +344,7 @@ impl App {
fn view_footer(&self) -> Html { fn view_footer(&self) -> Html {
html! { html! {
<footer class="text-center fixed-bottom bg-light py-2"> <footer class="text-center fixed-bottom text-muted bg-light py-2">
<div> <div>
<span>{format!("LLDAP version {}", env!("CARGO_PKG_VERSION"))}</span> <span>{format!("LLDAP version {}", env!("CARGO_PKG_VERSION"))}</span>
</div> </div>

View File

@ -10,3 +10,23 @@ header h2 {
font-weight: 700; font-weight: 700;
text-decoration: none; text-decoration: none;
} }
html.dark .bg-light {
background-color: rgba(59,59,59,1) !important;
}
html.dark a {
color: #e1e1e1
}
a {
color: #212529
}
html.dark .nav-link {
color: #e1e1e1
}
.nav-link {
color: #212529
}