Webform module and config export
This commit is contained in:
parent
3e6a5cbed2
commit
0e15467384
1040 changed files with 117682 additions and 0 deletions
38
web/modules/contrib/webform/css/webform.element.options.css
Normal file
38
web/modules/contrib/webform/css/webform.element.options.css
Normal file
|
@ -0,0 +1,38 @@
|
|||
/**
|
||||
* @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;
|
||||
}
|
||||
}
|
Reference in a new issue