css: Change rtl ul rule to only set left and right margins.

This change has been made so that the top and bottom margins for
bulleted lists is completely handled by the other ul rule.
This commit is contained in:
vinitS101
2019-04-13 06:54:07 +05:30
committed by Tim Abbott
parent cef784b101
commit 5be38f03db

View File

@@ -1449,8 +1449,11 @@ a:hover code {
ul {
margin: 5px 0 5px 20px;
}
/* Swap the left and right margins of bullets for Right-To-Left languages */
&.rtl ul {
margin: 5px 20px 5px 0;
margin-right: 20px;
margin-left: 0;
}
/* Formatting for blockquotes */