Update to Drupal 8.2.0. For more information, see https://www.drupal.org/project/drupal/releases/8.2.0
This commit is contained in:
parent
2f563ab520
commit
f1c8716f57
1732 changed files with 52334 additions and 11780 deletions
|
@ -10,8 +10,20 @@ fieldset:not(.fieldgroup) {
|
|||
border-radius: 2px;
|
||||
margin: 1em 0;
|
||||
padding: 30px 18px 18px;
|
||||
min-width: 0;
|
||||
position: relative;
|
||||
}
|
||||
/**
|
||||
* We've temporarily added this Firefox specific rule here to fix fieldset
|
||||
* widths.
|
||||
* @todo remove once this Mozilla bug is fixed.
|
||||
* See https://bugzilla.mozilla.org/show_bug.cgi?id=504622
|
||||
*/
|
||||
@-moz-document url-prefix() {
|
||||
fieldset:not(.fieldgroup) {
|
||||
display: table-cell;
|
||||
}
|
||||
}
|
||||
fieldset:not(.fieldgroup) > legend {
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
|
@ -23,6 +35,12 @@ fieldset:not(.fieldgroup) > legend {
|
|||
.fieldgroup {
|
||||
min-width: 0;
|
||||
}
|
||||
/**
|
||||
* We've temporarily added this Firefox specific rule here to fix fieldset
|
||||
* widths.
|
||||
* @todo remove once this Mozilla bug is fixed.
|
||||
* See https://bugzilla.mozilla.org/show_bug.cgi?id=504622
|
||||
*/
|
||||
@-moz-document url-prefix() {
|
||||
.fieldgroup {
|
||||
display: table-cell;
|
||||
|
@ -91,7 +109,6 @@ label[for] {
|
|||
background-color: #fcf4f2;
|
||||
}
|
||||
.form-required:after {
|
||||
background-image: url(../../images/required.svg);
|
||||
background-size: 7px 7px;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
|
@ -311,6 +328,9 @@ select {
|
|||
display: block;
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
select {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Exceptions */
|
||||
|
|
|
@ -236,9 +236,14 @@ details.fieldset-no-legend {
|
|||
/* @group Rearrange filter criteria */
|
||||
|
||||
.views-ui-rearrange-filter-form .action-links {
|
||||
margin: 0;
|
||||
float: left;
|
||||
margin: 0 0 1em;
|
||||
padding: 0;
|
||||
}
|
||||
.views-ui-rearrange-filter-form .tabledrag-toggle-weight-wrapper {
|
||||
float: right;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form table {
|
||||
border: medium none;
|
||||
|
|
Reference in a new issue