Skip to content

Commit

Permalink
[5.0] installation rtl fixes (#41877)
Browse files Browse the repository at this point in the history
There are two competing and conflicting declarations for the `j-install-step-header span`
This is the css that puts the space between the icon and the header

Note that the entire RTL css is incorrect but that is for another pr and another time. This PR is only to produce valid css without duplicate classes
  • Loading branch information
brianteeman committed Sep 23, 2023
1 parent f9db32c commit bbc421e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions installation/template/scss/template-rtl.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ textarea.noResize {

.j-install-step-header {
span {
margin-right: 5px;
margin-left: auto;
margin-right: auto;
margin-left: 5px;
}
}

Expand Down Expand Up @@ -80,11 +80,6 @@ textarea.noResize {
display: inline;
}

.j-install-step-header span {
margin-right: auto;
margin-left: 5px;
}

#jform_db_prefix {
text-align: right;
direction: ltr;
Expand Down

0 comments on commit bbc421e

Please sign in to comment.