This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/web/modules/contrib/webform/css/webform.element.options.css
2017-03-16 15:29:07 +00:00

38 lines
790 B
CSS

/**
* @file
* Element options display styles.
*
* @see /webform/example_layout_basic
*/
.webform-options-display-side-by-side > div {
display: inline-block;
margin-right: .5em;
}
/**
* Display columns for devices that are more than 400px wide.
*/
@media (min-width: 400px) {
.webform-options-display-two-columns {
display: inline-block;
margin-top: .4em;
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
.webform-options-display-three-columns {
display: inline-block;
margin-top: .4em;
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
.webform-options-display-two-columns div.form-item,
.webform-options-display-three-columns div.form-item {
margin-top: 0;
margin-bottom: 0;
}
}