Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -3,7 +3,89 @@
|
|||
* Bartik theme styles.
|
||||
*/
|
||||
|
||||
/* Add background color to table cells so that very wide off-screen tables look okay. */
|
||||
/**
|
||||
* Add background color to table cells so that very wide off-screen tables look okay.
|
||||
*/
|
||||
table {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak webform (elements) form.
|
||||
*/
|
||||
.webform-form .tableresponsive-toggle-columns,
|
||||
.webform-form .tabledrag-toggle-weight-wrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.webform-submission-form .form-type-radio .description,
|
||||
.webform-submission-form .form-type-checkbox .description {
|
||||
margin-left: 1.6em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak webform element form.
|
||||
*/
|
||||
.webform-states-table th.webform-states-table--operations,
|
||||
.webform-states-table td.webform-states-table--operations {
|
||||
min-width: 65px;
|
||||
}
|
||||
|
||||
.webform-states-table td:last-child input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.webform-multiple-table td.webform-multiple-table--operations,
|
||||
.webform-multiple-table td.webform-multiple-table--operations {
|
||||
min-width: 65px;
|
||||
}
|
||||
|
||||
.webform-multiple-table td.webform-multiple-table--operations input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak details toggle state.
|
||||
*/
|
||||
.webform-details-toggle-state {
|
||||
color: #0071b3;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
.webform-details-toggle-state:hover,
|
||||
.webform-details-toggle-statelink:focus {
|
||||
color: #018fe2;
|
||||
text-decoration: none;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak progress tracker.
|
||||
*
|
||||
* ISSUE:
|
||||
* Bartik theme is not displaying line between the markers.
|
||||
* The #main-wrapper {background: #ffffff) in core/themes/bartik/css/colors.css is causing the problem.
|
||||
*
|
||||
* WORKAROUND:
|
||||
* Define z-index for .progress-step.
|
||||
*/
|
||||
.webform-progress-tracker .progress-step {
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak element help.
|
||||
* @see css/webform.element.help.css
|
||||
*/
|
||||
summary .webform-element-help {
|
||||
border-color: #999;
|
||||
background: #999;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tweak Algolia places.
|
||||
*/
|
||||
input.ap-input {
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
|
||||
}
|
||||
|
|
Reference in a new issue