31 lines
649 B
CSS
31 lines
649 B
CSS
table.dataTable tbody > tr.selected {
|
|
background-color: rgb(218, 231, 255);
|
|
}
|
|
|
|
table.table-hover.dataTable tbody > tr.selected {
|
|
background-color: rgb(205, 212, 226);
|
|
}
|
|
|
|
table.table-hover.dataTable tbody {
|
|
cursor: default;
|
|
}
|
|
|
|
div.dataTables_wrapper .form-control {
|
|
border-color: #cccccc;
|
|
}
|
|
|
|
div.dataTables_wrapper .table-bordered {
|
|
border-radius: 3px;
|
|
border-color: #cccccc;
|
|
}
|
|
|
|
.has-error div.dataTables_wrapper .table-bordered {
|
|
border-color: #b94a48;
|
|
}
|
|
|
|
@media screen and (max-width: 767px) {
|
|
div.dataTables_wrapper div.dataTable_selection_info {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|