Skip to content

Commit

Permalink
[BUGFIX] Correct media position in accordion and tab items (#1384)
Browse files Browse the repository at this point in the history
Resolves: #1249

Co-authored-by: Benjamin Kott <benjamin.kott@outlook.com>
  • Loading branch information
Hawkeye1909 and benjaminkott committed Jun 22, 2023
1 parent acbc2ee commit cb43c6c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Resources/Public/Css/bootstrap5-rte.css
Original file line number Diff line number Diff line change
Expand Up @@ -16012,7 +16012,7 @@ textarea.form-control.error {
order: 0;
}

.accordion-content-left .accordion-content-text {
.accordion-content-right .accordion-content-text {
order: 0;
}

Expand Down Expand Up @@ -16055,7 +16055,7 @@ textarea.form-control.error {
order: 0;
}

.tab-pane-content-left .tab-pane-content-text {
.tab-pane-content-right .tab-pane-content-text {
order: 0;
}

Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Css/bootstrap5-rte.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Resources/Public/Css/bootstrap5-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -16012,7 +16012,7 @@ textarea.form-control.error {
order: 0;
}

.accordion-content-left .accordion-content-text {
.accordion-content-right .accordion-content-text {
order: 0;
}

Expand Down Expand Up @@ -16055,7 +16055,7 @@ textarea.form-control.error {
order: 0;
}

.tab-pane-content-left .tab-pane-content-text {
.tab-pane-content-right .tab-pane-content-text {
order: 0;
}

Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Css/bootstrap5-theme.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/Public/Scss/components/_accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $accordion-content-gap: $spacer !default;
order: 0;
}
}
.accordion-content-left {
.accordion-content-right {
.accordion-content-text {
order: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Scss/components/_tab.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $tab-content-gap: $spacer !default;
order: 0;
}
}
.tab-pane-content-left {
.tab-pane-content-right {
.tab-pane-content-text {
order: 0;
}
Expand Down

0 comments on commit cb43c6c

Please sign in to comment.