Skip to content

Commit

Permalink
color fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EdiWang committed Sep 29, 2024
1 parent f19a2b0 commit 282fc92
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Moonglade.Web/wwwroot/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
overflow-x: hidden;
}

.navbar-brand {
color: var(--bs-white);
}

.aspnet-tag-moonglade-userinfo,
.aspnet-tag-moonglade-userinfo-name,
.aspnet-tag-moonglade-userinfo-email {
Expand Down Expand Up @@ -148,7 +152,7 @@
}

.admin-nav-section .list-group-item:hover {
background-color: #EBEBEB;
background-color: var(--bs-gray-200);
}

.admin-toolbar .nav-link {
Expand Down Expand Up @@ -345,6 +349,14 @@ div.mce-fullscreen {
background-color: var(--bs-white);
}

[data-bs-theme="dark"] .navbar-brand {
color: var(--bs-white);
}

[data-bs-theme="dark"] .admin-table-container {
background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] .admin-nav-section .list-group-item:hover {
background-color: var(--bs-body-bg);
}

0 comments on commit 282fc92

Please sign in to comment.