Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -17,34 +17,43 @@
|
|||
|
||||
.webform-multiple-table td {
|
||||
white-space: nowrap;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.webform-multiple-table td:first-child {
|
||||
.webform-multiple-table td .description {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.webform-multiple-table td.webform-multiple-table--handle {
|
||||
padding: 0 0 0 1em;
|
||||
width: 26px;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.webform-multiple-table td:last-child {
|
||||
.webform-multiple-table td.webform-multiple-table--weight {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.webform-multiple-table td.webform-multiple-table--operations {
|
||||
padding: 0 2px;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
width: 30px;
|
||||
}
|
||||
.webform-multiple-table td.webform-multiple-table--operations-two {
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
|
||||
.webform-multiple-table td:last-child input {
|
||||
.webform-multiple-table td.webform-multiple-table--operations input {
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
.webform-multiple-table td:last-child input {
|
||||
opacity: 0.4;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.webform-multiple-table td:last-child input:hover,
|
||||
.webform-multiple-table td:last-child input:focus,
|
||||
.webform-multiple-table td:last-child input:active {
|
||||
.webform-multiple-table td.webform-multiple-table--operations input:hover,
|
||||
.webform-multiple-table td.webform-multiple-table--operations input:focus,
|
||||
.webform-multiple-table td.webform-multiple-table--operations input:active {
|
||||
opacity: 1;
|
||||
background: none;
|
||||
}
|
||||
|
@ -58,7 +67,8 @@
|
|||
.webform-multiple-table td .form-type-webform-autocomplete input {
|
||||
width: 100%;
|
||||
}
|
||||
.webform-multiple-table td .form-type-datelist select,
|
||||
|
||||
.webform-multiple-table td .container-inline select,
|
||||
.form-type-webform-multiple.webform-has-field-prefix td select,
|
||||
.form-type-webform-multiple.webform-has-field-suffix td select,
|
||||
.form-type-webform-multiple.webform-has-field-prefix td input,
|
||||
|
@ -81,10 +91,17 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* Hide AJAX throbber.
|
||||
* Add margin between stacked form items.
|
||||
*/
|
||||
.form-type-webform-multiple .ajax-progress-throbber {
|
||||
display: none;
|
||||
.webform-multiple-table .form-item + .form-item {
|
||||
margin-top: .2em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove margin from no messages.
|
||||
*/
|
||||
.webform-multiple-table--no-items-message .messages__wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -98,6 +115,70 @@
|
|||
/**
|
||||
* Tweak tabledrag toggle weight.
|
||||
*/
|
||||
.webform-multiple-tabledrag-toggle-weight {
|
||||
.tabledrag-toggle-weight-wrapper.webform-multiple-tabledrag-toggle-weight {
|
||||
float: right;
|
||||
display: inherit;
|
||||
position: inherit;
|
||||
}
|
||||
|
||||
.tabledrag-toggle-weight-wrapper.webform-multiple-tabledrag-toggle-weight button {
|
||||
position: inherit;
|
||||
top: inherit;
|
||||
right: inherit;
|
||||
}
|
||||
|
||||
/**
|
||||
* IMCE tweaks
|
||||
*/
|
||||
.webform-multiple-table .imce-url-button {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Mobile support to multiple table.
|
||||
*/
|
||||
@media (max-width: 768px) {
|
||||
.webform-multiple-table-responsive thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive tr {
|
||||
display: block;
|
||||
padding: .5em 0;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive td {
|
||||
display: block;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
text-align: inherit;
|
||||
width: inherit;
|
||||
padding: .5em 1em;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive td:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive td.webform-multiple-table--handle,
|
||||
.webform-multiple-table-responsive td.webform-multiple-table--operations {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive td.webform-multiple-table--weight {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.webform-multiple-table-responsive td > div > label.visually-hidden {
|
||||
display: block;
|
||||
position: inherit !important;
|
||||
clip: inherit;
|
||||
overflow: inherit;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
margin: .2em 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue