2021-03-17 19:54:25 +08:00
|
|
|
// scss-lint:disable SelectorDepth NestingDepth IdSelector SelectorFormat
|
|
|
|
|
|
|
|
.reports-index {
|
|
|
|
.report-actions-dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.report-actions-menu {
|
2021-05-03 21:17:46 +08:00
|
|
|
width: 200px !important;
|
2021-03-17 19:54:25 +08:00
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding: .5em 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-14 03:41:26 +08:00
|
|
|
|
|
|
|
.search-report-container {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
margin-right: 2em;
|
|
|
|
width: 200px;
|
|
|
|
}
|
2021-03-17 19:54:25 +08:00
|
|
|
}
|
|
|
|
|
2021-03-16 20:11:15 +08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 19:54:25 +08:00
|
|
|
.report-row {
|
|
|
|
.processing-error {
|
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
|
2021-05-27 20:55:27 +08:00
|
|
|
.generate-docx,
|
|
|
|
.generate-pdf {
|
2021-03-17 19:54:25 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2021-05-27 20:55:27 +08:00
|
|
|
.generate-docx,
|
|
|
|
.generate-pdf {
|
2021-03-17 19:54:25 +08:00
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 20:11:15 +08:00
|
|
|
}
|