44 lines
872 B
CSS
44 lines
872 B
CSS
.editableform,
|
|
.editableform div.control-group {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.editableform-loading {
|
|
background: url('img/loading.gif') center center no-repeat;
|
|
height: 25px;
|
|
}
|
|
|
|
.editable-inline .editableform-loading {
|
|
background-position: left 5px;
|
|
}
|
|
|
|
.editable-error-block {
|
|
max-width: 300px;
|
|
margin-top: 3px;
|
|
margin-bottom: 0;
|
|
clear: both;
|
|
}
|
|
|
|
.editable-error {
|
|
color: red;
|
|
}
|
|
|
|
.editableform input,
|
|
.editableform select,
|
|
.editableform textarea {
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
}
|
|
|
|
|
|
|
|
/* for inline datepicker do not to inherit from table (bootstrap) */
|
|
.table-striped .editableform table td, .editableform table th {
|
|
border: none !important;
|
|
}
|
|
|
|
.table-striped .editableform table tr:nth-child(2n+1) td,
|
|
.table-striped .editableform table tr:nth-child(2n+1) th {
|
|
background-color: transparent;
|
|
}
|