Skip to content

Commit

Permalink
[BUGFIX] Correct position of subnav left
Browse files Browse the repository at this point in the history
Resolves: #1395
  • Loading branch information
benjaminkott committed Jun 30, 2023
1 parent 582e01a commit f410d58
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Resources/Public/Css/bootstrap5-rte.css
Original file line number Diff line number Diff line change
Expand Up @@ -14447,6 +14447,12 @@ fieldset.form-group > *:last-child {
--section-gaps: 1;
--section-colspan: 9;
}
.backendlayout-subnavigation_left .subnav-wrap {
order: 1;
}
.backendlayout-subnavigation_left .maincontent-wrap {
order: 2;
}
.backendlayout-subnavigation_right .subnav-wrap {
order: 2;
}
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Css/bootstrap5-rte.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions Resources/Public/Css/bootstrap5-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -14447,6 +14447,12 @@ fieldset.form-group > *:last-child {
--section-gaps: 1;
--section-colspan: 9;
}
.backendlayout-subnavigation_left .subnav-wrap {
order: 1;
}
.backendlayout-subnavigation_left .maincontent-wrap {
order: 2;
}
.backendlayout-subnavigation_right .subnav-wrap {
order: 2;
}
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Css/bootstrap5-theme.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Resources/Public/Scss/components/_backendlayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@
--section-colspan: 9;
}
}
.backendlayout-subnavigation_left {
.subnav-wrap {
order: 1;
}
.maincontent-wrap {
order: 2;
}
}
.backendlayout-subnavigation_right {
.subnav-wrap {
order: 2;
Expand Down

0 comments on commit f410d58

Please sign in to comment.