Fix wiki image float and margins on rtl layout

This commit is contained in:
Bryan Housel
2019-02-09 15:30:57 -05:00
parent d055f34be8
commit 65fc1437dc

View File

@@ -1112,11 +1112,12 @@ a.hide-toggle {
img.tag-reference-wiki-image {
float: right;
width: 33.3333%;
width: -webkit-calc(33.3333% - 10px);
width: calc(33.3333% - 10px);
border-radius: 4px;
max-height: 200px;
margin: 10px 5px 15px 20px;
margin: 10px 5px 15px 10px;
}
[dir='rtl'] img.tag-reference-wiki-image {
float: left;
margin: 10px 10px 15px 5px;
}