2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-11 21:04:42 +08:00

When the dir is set on a list, add padding to both sides (#6097)

This commit is contained in:
Simon Cossar 2018-07-19 02:32:36 -07:00 committed by Guo Xiang Tan
parent fa02df9985
commit 4bee7fb458

View file

@ -56,3 +56,10 @@
.rtl .dashboard-right {
float: left !important;
}

// This is for the support_mixed_text_direction setting
.cooked ul[dir="ltr"], .d-editor-preview ul[dir="ltr"],
.cooked ul[dir="rtl"], .d-editor-preview ul[dir="rtl"] {
padding-right: 40px;
padding-left: 40px;
}