diff options
author | Alex Pott | 2015-12-23 00:18:17 (GMT) |
---|---|---|
committer | Alex Pott | 2015-12-23 00:18:17 (GMT) |
commit | 1d9f91eb57edae48c3de4657d781ee9252f791b3 (patch) | |
tree | ea3aa02d9bd9aeeb9585c4dddb564d40c3e1adf5 | |
parent | 39457444574e0dd4fff6c433a65fcd2016909cf8 (diff) |
Issue #2509390 by nathanlawson91, Maninders, herom, munzirtaha, Anansi_boy: tags has a wrong right padding in RTL
-rw-r--r-- | core/themes/bartik/css/components/field.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/themes/bartik/css/components/field.css b/core/themes/bartik/css/components/field.css index 213d804..231f8d7 100644 --- a/core/themes/bartik/css/components/field.css +++ b/core/themes/bartik/css/components/field.css @@ -29,6 +29,10 @@ margin: 0; list-style: none; } +/* This is required to win over specificity of [dir="rtl"] .region-content ul */ +[dir="rtl"] .field--type-entity-reference ul.links { + padding: 0; +} .field--type-entity-reference ul.links li { float: left; /* LTR */ padding: 0 1em 0 0; /* LTR */ |