composer update

This commit is contained in:
Oliver Davies 2019-01-24 08:00:03 +00:00
parent f6abc3dce2
commit 71dfaca858
1753 changed files with 45274 additions and 14619 deletions

View file

@ -0,0 +1,8 @@
/**
* @file
* Element date styles.
*/
.ui-datepicker-trigger {
margin: 0 2px;
}

View file

@ -0,0 +1,8 @@
/**
* @file
* Element datelist styles.
*/
.form-type-datelist input[type="text"] {
max-width: 5em;
}

View file

@ -9,3 +9,7 @@ img.webform-image-file {
max-width: 100%;
height: auto;
}
.webform-image-file-modal img {
display: block;
}

View file

@ -0,0 +1,30 @@
/**
* @file
* Managed file styles.
*/
.webform-managed-file-preview-wrapper + input[type="submit"],
.webform-managed-file-preview-wrapper + button,
.webform-managed-file-preview + input[type="submit"],
.webform-managed-file-preview + button {
margin: .5em 0;
}
.webform-managed-file-preview-wrapper,
.webform-managed-file-preview-wrapper.form-item {
display: table;
border: 1px solid #ccc;
padding: .5em;
}
.webform-managed-file-preview,
label.webform-managed-file-preview,
label.option.webform-managed-file-preview {
display: block;
}
.webform-managed-file-placeholder,
.webform-managed-file-preview,
.webform-file-button {
margin: .5em 0;
}

View file

@ -65,3 +65,14 @@ tr.webform-states-table--state td select {
.webform-states-table .tabledrag-changed {
display: none !important; /* Must use !important because .tabledrag-changed 'display' is set via JavaScript */
}
/**
* Limit results in jQuery UI Autocomplete
*
* https://stackoverflow.com/questions/7617373/limit-results-in-jquery-ui-autocomplete
*/
.ui-autocomplete {
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
}

View file

@ -5,17 +5,7 @@
* @see /webform/test_element_media_file
*/
.webform-video-file {
position: relative;
max-width: 640px;
height: 0;
padding-bottom: 56.25%;
}
.webform-video-file video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
height: auto;
}

View file

@ -49,18 +49,28 @@ code {
}
/* Add yellow background to tooltips and tabs */
/* @see core/assets/vendor/jquery.ui/themes/base/tabs.css */
.ui-tooltip.ui-widget {
background: #fe6;;
border: 1px solid #ed5;
}
.webform-tabs .ui-tabs-nav .ui-tabs-anchor {
text-decoration: inherit;
}
.webform-tabs .ui-tabs-active.ui-state-active {
background: #fe6;
border: 1px solid #ed5;
text-decoration: none;
}
.webform-tabs .ui-tabs-active.ui-state-active.ui-state-focus a {
text-decoration: underline;
.webform-tabs .ui-state-hover {
text-decoration: underline !important;
}
.webform-tabs .ui-state-active.ui-state-hover {
text-decoration: none !important;
}
/** Compress tabs for mobile */
@ -137,6 +147,27 @@ pre.webform-codemirror-runmode {
margin: 1em 0;
}
/* jQuery UI autocomplete states */
.ui-autocomplete a /* For filter autocomplete. */,
.ui-autocomplete .ui-menu-item-wrapper /* For #states value autocomplete. */ {
display: block;
border: 1px solid transparent;
color: #0074bd;
}
.ui-autocomplete a.ui-state-hover,
.ui-autocomplete a.ui-state-active,
.ui-autocomplete a.ui-state-focus,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-focus {
text-decoration: underline;
color: #0074bd;
background: #fe6;
border: solid 1px #ed5;
margin: 0;
}
/* jQuery UI button states */
.webform-buttons .ui-button.ui-state-default {
background: #f5f5f2;
@ -179,7 +210,6 @@ pre.webform-codemirror-runmode {
text-decoration: underline;
}
/* Token tree */
.token-tree ul {
margin: 0;