2013-09-01 15:31:50 -07:00
|
|
|
|
|
|
|
/******************************
|
|
|
|
* Form Wrapper
|
|
|
|
******************************/
|
|
|
|
|
|
|
|
div.form-wrapper {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************
|
|
|
|
* Forms
|
|
|
|
******************************/
|
|
|
|
|
|
|
|
div.form,
|
|
|
|
div.fieldset-form,
|
|
|
|
div.fieldset {
|
2015-02-09 13:20:34 -06:00
|
|
|
clear: left;
|
2013-09-01 15:31:50 -07:00
|
|
|
float: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-08-13 19:11:53 -05:00
|
|
|
.form {
|
|
|
|
padding-left: 5em;
|
|
|
|
}
|
|
|
|
|
2013-09-01 15:31:50 -07:00
|
|
|
|
|
|
|
/******************************
|
|
|
|
* Fieldsets
|
|
|
|
******************************/
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field-wrapper {
|
2013-09-01 15:31:50 -07:00
|
|
|
clear: both;
|
|
|
|
min-height: 30px;
|
|
|
|
overflow: auto;
|
2017-12-06 12:40:27 -06:00
|
|
|
margin: 15px;
|
2013-09-01 15:31:50 -07:00
|
|
|
}
|
|
|
|
|
2018-03-06 19:29:15 -06:00
|
|
|
.field-wrapper.with-error {
|
2013-09-01 15:31:50 -07:00
|
|
|
background-color: #ddcccc;
|
|
|
|
border: 2px solid #dd6666;
|
2017-12-06 12:40:27 -06:00
|
|
|
padding-bottom: 1em;
|
2013-09-01 15:31:50 -07:00
|
|
|
}
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field-wrapper .field-row {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field-wrapper label {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
2018-05-22 18:35:00 -05:00
|
|
|
width: 18em;
|
2013-09-01 15:31:50 -07:00
|
|
|
font-weight: bold;
|
2017-12-06 12:40:27 -06:00
|
|
|
padding-top: 2px;
|
2013-09-01 15:31:50 -07:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-03-06 19:29:15 -06:00
|
|
|
.field-wrapper.with-error label {
|
2017-12-06 12:40:27 -06:00
|
|
|
padding-left: 1em;
|
2017-07-18 16:51:15 -05:00
|
|
|
}
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field-wrapper .field-error {
|
|
|
|
padding: 1em 0 0.5em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field-wrapper .field-error .error-msg {
|
2013-09-01 15:31:50 -07:00
|
|
|
color: #dd6666;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field-wrapper .field {
|
|
|
|
display: table-cell;
|
2013-09-01 15:31:50 -07:00
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field-wrapper .field input[type=text],
|
|
|
|
.field-wrapper .field input[type=password],
|
|
|
|
.field-wrapper .field select,
|
|
|
|
.field-wrapper .field textarea {
|
2013-09-01 15:31:50 -07:00
|
|
|
width: 320px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label input[type="checkbox"],
|
|
|
|
label input[type="radio"] {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2017-12-06 12:40:27 -06:00
|
|
|
.field ul {
|
2013-09-01 15:31:50 -07:00
|
|
|
margin: 0px;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************
|
|
|
|
* Buttons
|
|
|
|
******************************/
|
|
|
|
|
|
|
|
div.buttons {
|
|
|
|
clear: both;
|
|
|
|
margin: 10px 0px;
|
|
|
|
}
|