Skip to content
Snippets Groups Projects
Commit 4691167b authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2343281 by Upchuk, herom: Fixed RTL issues in content listing page, aka /admin/content.

parent 356ebc92
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -407,6 +407,10 @@ ul.links a.active { ...@@ -407,6 +407,10 @@ ul.links a.active {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
[dir="rtl"] .breadcrumb ol {
/* This is required to win over specifity of [dir="rtl"] ol */
margin-right: 0;
}
.breadcrumb li { .breadcrumb li {
display: inline; display: inline;
list-style-type: none; list-style-type: none;
...@@ -461,6 +465,10 @@ ul.tabs { ...@@ -461,6 +465,10 @@ ul.tabs {
padding: 0; padding: 0;
margin: 1em 0; margin: 1em 0;
} }
[dir="rtl"] .action-links {
/* This is required to win over specifity of [dir="rtl"] ul */
margin-right: 0;
}
.action-links li { .action-links li {
display: inline-block; display: inline-block;
margin: 0 0.3em; margin: 0 0.3em;
......
...@@ -111,7 +111,8 @@ ul { ...@@ -111,7 +111,8 @@ ul {
margin: 0.25em 0 0.25em 1.5em; /* LTR */ margin: 0.25em 0 0.25em 1.5em; /* LTR */
} }
[dir="rtl"] ul { [dir="rtl"] ul {
margin: 0.25em 1.5em 0.25em 0; margin-left: 0;
margin-right: 1.5em;
} }
ol { ol {
list-style-type: decimal; list-style-type: decimal;
...@@ -119,7 +120,8 @@ ol { ...@@ -119,7 +120,8 @@ ol {
padding: 0; padding: 0;
} }
[dir="rtl"] ol { [dir="rtl"] ol {
margin: 0.25em 2em 0.25em 0; margin-left: 0;
margin-right: 2em;
} }
quote, quote,
code { code {
......
...@@ -6,6 +6,3 @@ ...@@ -6,6 +6,3 @@
background-color: #e0e0d8; background-color: #e0e0d8;
padding: 24px 0 0; padding: 24px 0 0;
} }
[dir="rtl"] #branding {
padding: 20px 20px 0 20px;
}
...@@ -13,6 +13,3 @@ ...@@ -13,6 +13,3 @@
font-weight: 600; font-weight: 600;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
[dir="rtl"] #branding h1.page-title {
float: right;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment