mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-06 12:43:06 +08:00
63 lines
1 KiB
SCSS
63 lines
1 KiB
SCSS
// scss-lint:disable SelectorDepth SelectorFormat
|
|
// scss-lint:disable NestingDepth QualifyingElement
|
|
|
|
.dataTables_wrapper {
|
|
|
|
.main-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.toolbar {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.pagination-row {
|
|
align-items: center;
|
|
background-color: $color-white;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
min-height: 68px;
|
|
width: 100%;
|
|
|
|
.pagination-info,
|
|
.pagination-actions {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.pagination-info {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.dataTables_info {
|
|
padding-top: 0;
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.dataTables_info {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.dataTables_length {
|
|
margin-right: 24px;
|
|
width: 170px;
|
|
|
|
.dropdown-selector-container {
|
|
width: inherit;
|
|
}
|
|
|
|
label {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.pagination-info {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|