added admin interface
This commit is contained in:
81
admin/assets/scss/partials/_tables.scss
Normal file
81
admin/assets/scss/partials/_tables.scss
Normal file
@ -0,0 +1,81 @@
|
||||
.table {
|
||||
.thead-primary{
|
||||
th{
|
||||
color: $col-white;
|
||||
background-color: $color-primary;
|
||||
border-color: $color-primary;
|
||||
}
|
||||
}
|
||||
.thead-success{
|
||||
th{
|
||||
color: $col-white;
|
||||
background-color: $color-success;
|
||||
border-color: $color-success;
|
||||
}
|
||||
}
|
||||
.thead-danger{
|
||||
th{
|
||||
color: $col-white;
|
||||
background-color: $color-danger;
|
||||
border-color: $color-danger;
|
||||
}
|
||||
}
|
||||
.thead-info{
|
||||
th{
|
||||
color: $col-white;
|
||||
background-color: $color-info;
|
||||
border-color: $color-info;
|
||||
}
|
||||
}
|
||||
.thead-purple{
|
||||
th{
|
||||
color: $col-white;
|
||||
background-color: $purple;
|
||||
border-color: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr,
|
||||
th {
|
||||
td {
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include max-screen($break-small - 1px) {
|
||||
div.dataTables_paginate{
|
||||
.pagination{
|
||||
justify-content: left !important;
|
||||
}
|
||||
}
|
||||
.dataTables_wrapper{
|
||||
.col-sm-12.col-md-6,
|
||||
.col-sm-12.col-md-5,
|
||||
.col-sm-12.col-md-7{
|
||||
padding: 0;
|
||||
|
||||
.dataTables_length,
|
||||
.dataTables_filter,
|
||||
.dataTables_info,
|
||||
.paging_simple_numbers{
|
||||
text-align: left !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
div.dataTables_wrapper{
|
||||
div.dataTables_filter{
|
||||
text-align: left !important;
|
||||
float: left !important;
|
||||
}
|
||||
}
|
||||
|
||||
.table-responsive{
|
||||
.dt-buttons{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user