2020-04-08 03:02:16 +08:00
|
|
|
// scss-lint:disable SelectorDepth SelectorFormat
|
|
|
|
// scss-lint:disable NestingDepth QualifyingElement
|
|
|
|
|
|
|
|
.dataTables_wrapper {
|
2020-04-22 23:55:22 +08:00
|
|
|
|
|
|
|
.main-actions {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 03:02:16 +08:00
|
|
|
.pagination-row {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-white;
|
|
|
|
display: flex;
|
2020-04-22 23:55:22 +08:00
|
|
|
flex-wrap: wrap;
|
2020-05-06 00:17:14 +08:00
|
|
|
min-height: 68px;
|
2020-04-08 03:02:16 +08:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.pagination-info,
|
|
|
|
.pagination-actions {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination-info {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2020-05-06 00:17:14 +08:00
|
|
|
flex-wrap: wrap;
|
2020-04-08 03:02:16 +08:00
|
|
|
|
|
|
|
.dataTables_info {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-06 00:17:14 +08:00
|
|
|
@media (max-width: 1000px) {
|
|
|
|
.dataTables_info {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 03:02:16 +08:00
|
|
|
.dataTables_length {
|
|
|
|
margin-right: 24px;
|
|
|
|
width: 170px;
|
|
|
|
|
|
|
|
.dropdown-selector-container {
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-06 00:17:14 +08:00
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.pagination-info {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 03:02:16 +08:00
|
|
|
}
|
|
|
|
}
|