Skip to content

Commit

Permalink
Issue backdrop#3616: [UX] Project Browser: Fix RTL in the "Install ne…
Browse files Browse the repository at this point in the history
  • Loading branch information
klonos authored Mar 24, 2019
1 parent e63ab79 commit fe8ad0a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions core/modules/installer/css/installer.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,20 @@
}
@media (min-width: 500px) {
.screenshot {
float: left;
float: left; /* LTR */
width: 133px;
height: 100px;
margin: 0;
}
[dir="rtl"] .screenshot {
float: right;
}
.has-image .project-information {
margin-left: 148px;
margin-left: 148px; /* LTR */
}
[dir="rtl"] .has-image .project-information {
margin-right: 148px;
margin-left: 0;
}
}

Expand Down

0 comments on commit fe8ad0a

Please sign in to comment.