Webform module and config export

This commit is contained in:
Rob Davies 2017-03-16 15:29:07 +00:00
parent 3e6a5cbed2
commit 0e15467384
1040 changed files with 117682 additions and 0 deletions

View file

@ -0,0 +1,54 @@
/**
* @file
* Seven theme styles.
*/
/* Align all tables cells top */
table td {
vertical-align: top;
}
/* Add background to nested details */
details details {
background-color: #f8f8f8;
}
details details details {
background-color: #fff;
}
/* Add white background to tooltips */
.ui-tooltip.ui-widget {
background: #fff;
}
/* Hide tabs and elements from printing. */
@media print {
.shortcut-action,
.dropbutton-wrapper,
.block-system-breadcrumb-block,
.block-local-tasks-block,
.pager,
.button-action,
.webform-submission-navigation,
.webform-filter-form {
display: none !important; /* Using !important to ensure with these elements are hidden with getting into a specificity war */
}
}
/* System tray divider */
.ui-resizable-w {
background-color: #bfbfba;
border: 1px solid #6b6b6b;
border-width: 1px 2px;
}
/* System tray title bar */
.ui-dialog.ui-dialog-offcanvas .ui-dialog-titlebar {
border-radius: 0;
}
/* System tray actions */
.ui-dialog.ui-dialog-offcanvas .ui-dialog-content .form-actions {
margin: 1em 0;
}