Skip to content

Commit cf04d25

Browse files
committed
Fixed CSS on the user menu
1 parent 57cc826 commit cf04d25

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

public/assets/css/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ div.dt-container td.dt-empty {
10031003
padding: 0.45rem 0.55rem 0.45rem 0.8rem;
10041004
border: 1px solid var(--app-border);
10051005
border-radius: 0.8rem;
1006-
background: rgba(255, 255, 255, 0.03);
1006+
background: var(--app-panel-2);
10071007
color: var(--app-text);
10081008
}
10091009
.app-topbar-user-trigger {

public/assets/less/components/user-menu.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
padding: 0.45rem 0.55rem 0.45rem 0.8rem;
1010
border: 1px solid var(--app-border);
1111
border-radius: 0.8rem;
12-
background: rgba(255,255,255,0.03);
12+
background: var(--app-panel-2);
1313
color: var(--app-text);
1414
}
1515

public/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,7 @@
357357
['name' => 'admin-settings', 'label' => 'Settings', 'url' => '/admin/settings', 'icon' => 'bi bi-sliders', 'permission' => 'admin', 'order' => 35, 'sections' => []],
358358
['name' => 'admin-audit', 'label' => 'Audit Log', 'url' => '/admin/audit', 'icon' => 'bi bi-journal-text', 'permission' => 'admin', 'order' => 40, 'sections' => []],
359359
['name' => 'admin-extensions', 'label' => 'Extensions', 'url' => '/admin/extensions', 'icon' => 'bi bi-boxes', 'permission' => 'extensions.manage', 'order' => 45, 'sections' => []],
360+
['name' => 'admin-kernel-updates', 'label' => 'Kernel Updates', 'url' => '/admin/updates', 'icon' => 'bi bi-arrow-down-square', 'permission' => 'admin', 'order' => 47, 'sections' => []],
360361
];
361362

362363
foreach ($adminMenus as $menuDef) {

0 commit comments

Comments
 (0)