Compare commits

..

10 Commits

Author SHA1 Message Date
jmiller 50ee87d320 chore: sync updates.xml 05.17.00 from main [skip ci] 2026-06-03 02:58:14 +00:00
jmiller 89a938a164 chore: sync updates.xml 05.14.00 from main [skip ci] 2026-05-31 03:46:55 +00:00
jmiller 4f48ab04a8 chore: sync updates.xml 05.13.00 from main [skip ci] 2026-05-31 03:40:01 +00:00
jmiller b53fec82a3 chore: sync updates.xml 05.12.00 from main [skip ci] 2026-05-31 03:33:15 +00:00
jmiller 4dbd27c075 chore: sync updates.xml 05.11.00 from main [skip ci] 2026-05-31 03:20:43 +00:00
jmiller 77fc0e89c5 chore: sync updates.xml 05.05.00 from main [skip ci] 2026-05-30 18:01:55 +00:00
jmiller 921524de7d chore: sync updates.xml 05.04.00 from main [skip ci] 2026-05-30 17:36:15 +00:00
jmiller d77662ac46 chore: sync updates.xml 05.03.00 from main [skip ci] 2026-05-30 17:25:19 +00:00
jmiller ccb4f3a233 chore: sync updates.xml 05.02.00 from main [skip ci] 2026-05-30 16:14:29 +00:00
Jonathan Miller d541a07263 fix(ui): left-align admin sidebar — fix justify-content and text-align
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 2s
Changed details.toggleable-item summary from justify-content:
space-between to gap + margin-left: auto on the chevron. Added
.flex-container-nav .item rule to force left alignment on all
menu items including standalone links.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-25 23:29:52 -05:00
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<div class="flex-container-nav">
<div class="ui fluid vertical menu" style="text-align: left !important;">
<div class="ui fluid vertical menu">
<div class="header item">{{ctx.Locale.Tr "admin.settings"}}</div>
<details class="item toggleable-item" {{if or .PageIsAdminDashboard .PageIsAdminSelfCheck}}open{{end}}>
+7 -1
View File
@@ -9,8 +9,8 @@ details.toggleable-item .menu {
details.toggleable-item summary {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.5em;
padding: 0.92857143em 1.14285714em;
}
@@ -20,6 +20,7 @@ details.toggleable-item summary::-webkit-details-marker /* Safari */ {
}
details.toggleable-item summary::after {
margin-left: auto;
transition: transform 0.25s ease;
content: "";
width: 14px;
@@ -35,3 +36,8 @@ details.toggleable-item summary::after {
details.toggleable-item[open] summary::after {
transform: rotate(90deg);
}
.flex-container-nav .ui.menu .item {
text-align: left !important;
justify-content: flex-start !important;
}