Add bottom margin back to the last items in form groups and panels (Bootstrap theme overrides default). Exception: date select fields.

This commit is contained in:
Michael Stenta 2018-09-19 13:25:35 -04:00
parent 341093710e
commit 34804a7cd2
1 changed files with 13 additions and 0 deletions

View File

@ -26,6 +26,19 @@ body.front h1.page-header {
display: none;
}
/**
* Add bottom margin back to the last items in form groups and panels
* (Bootstrap theme overrides default).
* Exception: date select fields.
*/
.form-group:last-child,
.panel:last-child {
margin-bottom: 18px;
}
.container-inline-date .form-group:last-child {
margin-bottom: 0;
}
/**
* Style help text glyphicons.
*/