50 lines
936 B
CSS
50 lines
936 B
CSS
/* Status filter styled like button */
|
|
.status-filter {
|
|
border-radius: 8px !important;
|
|
border: 1px solid #dee2e6 !important;
|
|
padding: 6px 30px 6px 12px !important;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
background-color: #fff;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.status-filter:hover {
|
|
border-color: #adb5bd !important;
|
|
box-shadow: 0 0 0 0.15rem rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.status-filter:focus {
|
|
border-color: #212529 !important;
|
|
box-shadow: 0 0 0 0.15rem rgba(0,0,0,0.1) !important;
|
|
}
|
|
|
|
.status-filter.form-select-sm {
|
|
height: 38px;
|
|
}
|
|
/* space between action buttons */
|
|
td .btn{
|
|
margin-right:15px;
|
|
margin-bottom:10px;
|
|
}
|
|
|
|
/* remove space from last button */
|
|
td .btn:last-child{
|
|
margin-right:0;
|
|
}
|
|
|
|
/* make sortable headers look clickable */
|
|
th.sort{
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sort-icon{
|
|
margin-left:6px;
|
|
font-size:13px;
|
|
color:#9aa4b2;
|
|
}
|
|
|
|
.sort:hover .sort-icon{
|
|
color:#ffffff;
|
|
}
|