Update to Drupal 8.0.0-rc3. For more information, see https://www.drupal.org/node/2608078

This commit is contained in:
Pantheon Automation 2015-11-04 11:11:27 -08:00 committed by Greg Anderson
parent 6419a031d7
commit 4afb23bbd3
762 changed files with 20080 additions and 6368 deletions

View file

@ -137,6 +137,10 @@ ul {
margin-left: 0;
margin-right: 1.5em;
}
/* This is required to win over specificity of [dir="rtl"] ul */
[dir="rtl"] .messages__list {
margin-right: 0;
}
ol {
list-style-type: decimal;
margin: 0.25em 0 0.25em 2em; /* LTR */

View file

@ -19,7 +19,11 @@
background: #6b6b6b;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 15px 49px 15px 15px;
padding: 15px 49px 15px 15px; /* LTR */
}
[dir="rtl"] .ui-dialog .ui-dialog-titlebar {
padding-left: 49px;
padding-right: 15px;
}
.ui-dialog .ui-dialog-title {
font-size: 1.231em;
@ -103,4 +107,3 @@
.ui-dialog .ajax-progress-throbber .message {
display: none;
}

View file

@ -18,10 +18,11 @@
-webkit-font-smoothing: antialiased;
text-align: left; /* LTR */
}
[dir="rtl"] .js .dropbutton .dropbutton-action > input,
[dir="rtl"] .js .dropbutton .dropbutton-action > a,
[dir="rtl"] .js .dropbutton .dropbutton-action > button {
[dir="rtl"].js .dropbutton .dropbutton-action > input,
[dir="rtl"].js .dropbutton .dropbutton-action > a,
[dir="rtl"].js .dropbutton .dropbutton-action > button {
text-align: right;
margin-left: 0; /* This is required to win over specificity of [dir="rtl"] .dropbutton-multiple .dropbutton .dropbutton-action > * */
}
.js .dropbutton-action.last {
border-radius: 0 0 0 1em; /* LTR */

View file

@ -34,6 +34,7 @@ ul.inline li {
[dir="rtl"] ul.links li,
[dir="rtl"] ul.inline li {
padding-left: 1em;
padding-right: 0;
}
ul.inline li {
display: inline;

View file

@ -108,6 +108,10 @@ th.is-active > a:focus:after {
td .item-list ul {
margin: 0;
}
/* This is required to win over specificity of [dir="rtl"] .item-list ul */
[dir="rtl"] td .item-list ul {
margin: 0;
}
td.is-active {
background: none;
}

View file

@ -257,6 +257,12 @@ li.tabs__tab a {
margin-left: 0;
margin-right: -1px;
}
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab */
[dir="rtl"] .views-displays .tabs.secondary li,
[dir="rtl"] .views-displays .tabs.secondary li.is-active {
padding-left: 0;
padding-right: 0;
}
.tabs.secondary .tabs__tab + .tabs__tab {
border-top: 1px solid #d9d8d4;
}
@ -270,6 +276,11 @@ li.tabs__tab a {
border-right: 2px solid #004f80;
padding-right: 15px;
}
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab.is-active */
[dir="rtl"] .views-displays .tabs.secondary li.is-active {
border: 0 none;
padding-right: 0;
}
.tabs.secondary .tabs__tab:hover,
.tabs.secondary .tabs__tab:focus {
color: #008ee6;
@ -282,11 +293,26 @@ li.tabs__tab a {
border-right: 2px solid #008ee6;
padding-right: 15px;
}
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab:hover */
[dir="rtl"] .views-displays .tabs li.tabs__tab:hover {
border: 0 none;
padding-right: 0;
}
.tabs.secondary a {
background-color: transparent;
padding: 7px 13px 5px;
text-decoration: none;
}
/* This is required to win over specificity of [dir="rtl"] li.tabs__tab a */
[dir="rtl"] .tabs.secondary a {
padding-left: 13px;
padding-right: 13px;
}
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary a */
[dir="rtl"] .views-displays .tabs.secondary a {
padding-left: 7px;
padding-right: 7px;
}
.tabs.secondary .is-active a {
color: #004f80;
}

View file

@ -43,6 +43,13 @@ details.fieldset-no-legend {
[dir="rtl"] .views-admin a.button,
[dir="rtl"] .views-ui-dialog a.button {
margin-left: 0;
margin-right: 1em;
}
[dir="rtl"] .views-admin input.form-submit:first-child,
[dir="rtl"] .views-ui-dialog input.form-submit:first-child,
[dir="rtl"] .views-admin a.button:first-child,
[dir="rtl"] .views-ui-dialog a.button:first-child {
margin-right: 0;
}
.form-radios > .form-item {

View file

@ -165,6 +165,9 @@
padding: 15px;
margin: 0.25em 0;
}
[dir="rtl"] ul {
margin-right: 0; /* Overrides default [dir="rtl"] ul margin */
}
.layout-sidebar-first {
float: left; /* LTR */
width: 35%;