mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-07 16:09:57 +08:00
63 lines
1,016 B
SCSS
63 lines
1,016 B
SCSS
// scss-lint:disable SelectorDepth NestingDepth IdSelector SelectorFormat
|
|
|
|
.reports-index {
|
|
.report-actions-dropdown {
|
|
display: inline-block;
|
|
float: left;
|
|
position: relative;
|
|
|
|
.report-actions-menu {
|
|
width: 200px;
|
|
|
|
li {
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
padding: .5em 1em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.reports-datatable {
|
|
height: calc(100vh - var(--navbar-height) - var(--content-header-size));
|
|
|
|
#reports-table_wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
.dataTables_scroll {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
height: calc(100% - var(--datatable-pagination-row));
|
|
|
|
.dataTables_scrollHead {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.pagination-row {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.report-row {
|
|
.processing-error {
|
|
color: $brand-danger;
|
|
}
|
|
|
|
.generate-docx {
|
|
display: none;
|
|
}
|
|
|
|
&:hover {
|
|
.generate-docx {
|
|
display: initial;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|