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