2023-08-02 08:23:48 +02:00
|
|
|
@import '../../../src/utils/base';
|
|
|
|
@import '../../../src/utils/mixins/sticky-cell';
|
2020-04-04 12:09:17 +02:00
|
|
|
|
|
|
|
.visits-table {
|
|
|
|
margin: 1.5rem 0 0;
|
|
|
|
position: relative;
|
2021-01-28 23:09:09 +01:00
|
|
|
background-color: var(--primary-color);
|
2020-12-30 19:48:02 +01:00
|
|
|
overflow-y: hidden;
|
2020-04-04 12:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.visits-table__header-cell {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 55px;
|
2020-04-05 16:02:42 +02:00
|
|
|
|
|
|
|
@include sticky-cell();
|
|
|
|
|
2020-04-27 18:04:24 +02:00
|
|
|
@media (min-width: $mdMin) {
|
|
|
|
&.visits-table__sticky {
|
2020-12-12 21:05:54 +01:00
|
|
|
top: $headerHeight + 40px;
|
2020-04-27 18:04:24 +02:00
|
|
|
}
|
2020-04-05 16:02:42 +02:00
|
|
|
}
|
2020-04-04 12:09:17 +02:00
|
|
|
}
|
|
|
|
|
2020-04-03 23:00:57 +02:00
|
|
|
.visits-table__header-icon {
|
|
|
|
float: right;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2020-04-04 12:09:17 +02:00
|
|
|
|
|
|
|
.visits-table__footer-cell.visits-table__footer-cell {
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: 34px;
|
|
|
|
padding: .5rem;
|
2020-04-05 16:16:55 +02:00
|
|
|
|
2020-04-05 16:02:42 +02:00
|
|
|
@include sticky-cell();
|
|
|
|
}
|
|
|
|
|
|
|
|
.visits-table__sticky.visits-table__sticky {
|
|
|
|
position: sticky;
|
2020-04-04 12:09:17 +02:00
|
|
|
}
|