This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/css/webform.theme.bartik.css
2018-11-23 12:29:20 +00:00

92 lines
1.8 KiB
CSS

/**
* @file
* Bartik theme styles.
*/
/**
* 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;
}