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

@ -108,10 +108,10 @@
.comment__content nav {
padding-top: 1px;
}
.comment .indented {
.indented {
margin-left: 40px; /* LTR */
}
[dir="rtl"] .comment .indented {
[dir="rtl"] .indented {
margin-right: 40px;
margin-left: 0;
}

View file

@ -11,6 +11,8 @@
}
[dir="rtl"] .region-primary-menu .menu {
text-align: right;
margin-left: 5px; /* This is required to win over specificity of [dir="rtl"] ul.menu */
margin-right: 5px; /* This is required to win over specificity of [dir="rtl"] ul.menu */
}
.region-primary-menu .menu-item {
float: none;
@ -115,6 +117,10 @@ body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu .
padding: 0;
text-align: center;
}
/* This is required to win over specificity of the global [dir="rtl"] .region-primary-menu .menu */
[dir="rtl"] .region-primary-menu .menu {
text-align: center;
}
.region-primary-menu .menu-item,
body:not(:target) .region-primary-menu .menu-item {
float: left; /* LTR */
@ -145,6 +151,10 @@ body:not(:target) .region-primary-menu .menu-toggle-target-show:target ~ .menu .
margin-bottom: 5px;
padding: 0.9em 5px;
}
/* This is required to win over specificity of the global [dir="rtl"] .region-primary-menu .menu a */
[dir="rtl"] .region-primary-menu .menu a {
padding: 0.9em 5px;
}
body:not(:target) .region-primary-menu .menu-toggle {
display: none;
}

View file

@ -8,6 +8,8 @@
}
[dir="rtl"] .region-secondary-menu .menu {
text-align: left;
margin-right: 10px; /* required to win over specificity of [dir="rtl"] ul.menu */
margin-left: 10px;
}
.region-secondary-menu .menu-item {
margin: 0;

View file

@ -9,8 +9,7 @@
* - configuration: A list of the block's configuration values.
* - label: The configured label for the block.
* - label_display: The display settings for the label.
* - module: The module that provided this block plugin.
* - cache: The cache settings.
* - provider: The module or other provider that provided this block plugin.
* - Block plugin specific settings will also be stored here.
* - content: The content of this block.
* - attributes: array of HTML attributes populated by modules, intended to

View file

@ -4,12 +4,10 @@
* Bartik's theme implementation to display a node.
*
* Available variables:
* - node: Full node entity.
* - id: The node ID.
* - bundle: The type of the node, for example, "page" or "article".
* - authorid: The user ID of the node author.
* - createdtime: Time the node was published formatted in Unix timestamp.
* - changedtime: Time the node was changed formatted in Unix timestamp.
* - node: The node entity with limited access to object properties and methods.
Only "getter" methods (method names starting with "get", "has", or "is")
and a few common methods such as "id" and "label" are available. Calling
other methods (such as node.delete) will result in an exception.
* - label: The title of the node.
* - content: All node items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use