Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -39,29 +39,30 @@
|
|||
/**
|
||||
* Basic table formatting.
|
||||
*/
|
||||
.webform-likert-table th,
|
||||
.webform-likert-table td {
|
||||
.webform-likert-table-wrapper th,
|
||||
.webform-likert-table-wrapper td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.form-type-webform-likert td label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.webform-likert-table th:first-child,
|
||||
.webform-likert-table td:first-child {
|
||||
.webform-likert-table-wrapper th:first-child,
|
||||
.webform-likert-table-wrapper td:first-child {
|
||||
text-align: inherit;
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.form-type-webform-likert td:first-child label {
|
||||
.webform-likert-table-wrapper td:first-child label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Mobile support to likert webform element table.
|
||||
* Mobile support to likert webform element that converts radios in table
|
||||
* grid to inline vertical radios.
|
||||
*/
|
||||
@media (max-width: 768px) {
|
||||
.form-type-webform-likert table.sticky-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.form-type-webform-likert table {
|
||||
border-collapse: collapse;
|
||||
font-size: inherit;
|
||||
|
@ -92,7 +93,29 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.form-type-webform-likert td label {
|
||||
/**
|
||||
* Show visually hidden radio title and description
|
||||
* when Likert is displayed inline on mobile.
|
||||
* @see \Drupal\webform\Element\WebformLikert::processWebformLikert
|
||||
* @see core/modules/system/css/components/hidden.module.css
|
||||
*/
|
||||
.webform-likert-table .visually-hidden {
|
||||
position: inherit !important;
|
||||
clip: inherit;
|
||||
overflow: inherit;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
}
|
||||
|
||||
.webform-likert-label.visually-hidden {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.webform-likert-description.hidden {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.webform-likert-help.hidden {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue