40 lines
751 B
CSS
40 lines
751 B
CSS
@media (max-width: 767px) {
|
|
.table-responsive .dropdown-menu,
|
|
.table-responsive .dropdown-toggle {
|
|
position: static !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.table-responsive {
|
|
overflow: visible;
|
|
}
|
|
}
|
|
|
|
.table-responsive {
|
|
overflow: auto;
|
|
overflow-y: visible;
|
|
}
|
|
|
|
.custom-select.active {
|
|
border-color: #a8c1a0;
|
|
outline: 0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.custom-select.deactive {
|
|
border-color: #c1998f;
|
|
outline: 0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.form-control.active {
|
|
border: 1px solid rgba(24, 28, 33, 0.1);
|
|
border-color: #a8c1a0;
|
|
}
|
|
.form-control.deactive {
|
|
border: 1px solid rgba(24, 28, 33, 0.1);
|
|
border-color: #c1998f;
|
|
}
|
|
|