Skip to content

Commit

Permalink
bug #5844 Fix the color of submenu items in dark mode (javiereguiluz)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.x branch.

Discussion
----------

Fix the color of submenu items in dark mode

Fixes #5842.

Commits
-------

1c8cc53 Fix the color of submenu items in dark mode
  • Loading branch information
javiereguiluz committed Jul 20, 2023
2 parents 66cf4b4 + 1c8cc53 commit 73e20e1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets/css/easyadmin-theme/variables-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
--sidebar-menu-badge-color: var(--true-gray-300);
--sidebar-menu-badge-active-bg: var(--blue-800);
--sidebar-menu-badge-active-color: var(--true-gray-300);
--sidebar-menu-submenu-color: var(--true-gray-600);
--sidebar-menu-submenu-color: var(--true-gray-400);
--sidebar-menu-header-color: var(--true-gray-400);
--sidebar-menu-icon-color: var(--true-gray-500);
--sidebar-menu-active-item-bg: var(--true-gray-700);
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Resources/public/entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"entrypoints": {
"app": {
"css": [
"/app.348e2ac1.css",
"/app.348e2ac1.rtl.css"
"/app.614607cb.css",
"/app.614607cb.rtl.css"
],
"js": [
"/app.914bb6ba.js"
Expand Down
6 changes: 3 additions & 3 deletions src/Resources/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app.css": "app.348e2ac1.css",
"app.rtl.css": "app.348e2ac1.rtl.css",
"app.css": "app.614607cb.css",
"app.rtl.css": "app.614607cb.rtl.css",
"app.js": "app.914bb6ba.js",
"form.js": "form.fc39362b.js",
"page-layout.js": "page-layout.3347892e.js",
Expand Down Expand Up @@ -283,4 +283,4 @@
"images/flags/AT.svg": "images/flags/AT.svg",
"images/flags/ID.svg": "images/flags/ID.svg",
"images/flags/UNKNOWN.svg": "images/flags/UNKNOWN.svg"
}
}

0 comments on commit 73e20e1

Please sign in to comment.