Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663

This commit is contained in:
Greg Anderson 2015-10-08 11:40:12 -07:00
parent eb34d130a8
commit f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions

View file

@ -33,13 +33,13 @@
padding-right: 10px;
padding-left: 0;
}
.layout-column.half {
.layout-column--half {
width: 50%;
}
.layout-column.quarter {
.layout-column--quarter {
width: 25%;
}
.layout-column.three-quarter {
.layout-column--three-quarter {
width: 75%;
}
}
@ -132,7 +132,11 @@ small .admin-link:after {
cursor: default;
}
.system-modules td {
padding-left: 0;
padding-left: 0; /* LTR */
}
[dir="rtl"] .system-modules td {
padding-left: 12px;
padding-right: 0;
}
@media screen and (max-width: 40em) {
@ -188,24 +192,30 @@ small .admin-link:after {
}
/* Status report. */
.system-status-report td {
.system-status-report__status-title {
position: relative;
vertical-align: top;
width: 25%;
padding: 10px 6px 10px 40px; /* LTR */
box-sizing: border-box;
font-weight: normal;
}
.system-status-report__status-icon {
width: 16px;
padding-right: 0; /* LTR */
}
[dir="rtl"] .system-status-report__status-icon {
padding-left: 0;
padding-right: 6px;
[dir="rtl"] .system-status-report__status-title {
padding: 10px 40px 10px 6px;
}
.system-status-report__status-icon:before {
content: "";
background-repeat: no-repeat;
height: 16px;
width: 16px;
margin-top: 2px;
display: block;
position: absolute;
left: 12px; /* LTR */
top: 12px;
}
[dir="rtl"] .system-status-report__status-icon:before {
left: auto;
right: 12px;
}
.system-status-report__status-icon--error:before {
background-image: url(../../../misc/icons/e32700/error.svg);
@ -213,9 +223,6 @@ small .admin-link:after {
.system-status-report__status-icon--warning:before {
background-image: url(../../../misc/icons/e29700/warning.svg);
}
.system-status-report__status-title {
width: 25%;
}
/**
* Appearance page.
@ -366,5 +373,8 @@ small .admin-link:after {
padding: 0 0 0 0.7em;
}
.system-themes-admin-form {
clear: left;
clear: left; /* LTR */
}
[dir="rtl"] .system-themes-admin-form {
clear: right;
}