2020-12-13 15:28:20 +01:00
|
|
|
@import "/src/theme";
|
|
|
|
|
|
2021-01-15 16:13:22 -08:00
|
|
|
tr {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-13 15:28:20 +01:00
|
|
|
.table-row-selected {
|
2022-03-08 14:49:40 -08:00
|
|
|
background-color: var(--ngx-primary-faded);
|
2020-12-18 00:38:31 +01:00
|
|
|
}
|
|
|
|
|
|
2020-12-16 16:18:41 -08:00
|
|
|
$paperless-card-breakpoints: (
|
|
|
|
|
0: 2, // xs
|
|
|
|
|
768px: 3, //md
|
|
|
|
|
992px: 4, //lg
|
|
|
|
|
1200px: 5, //xl
|
|
|
|
|
1400px: 6, // xxl
|
|
|
|
|
1600px: 7,
|
|
|
|
|
1800px: 8,
|
|
|
|
|
2000px: 9
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
.row-cols-paperless-cards {
|
|
|
|
|
@each $width, $n_cols in $paperless-card-breakpoints {
|
|
|
|
|
@media(min-width: $width) {
|
|
|
|
|
> * {
|
|
|
|
|
flex: 0 0 auto;
|
2022-02-21 08:50:50 -08:00
|
|
|
width: calc(100% / $n-cols);
|
2020-12-16 16:18:41 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-11 12:52:42 -08:00
|
|
|
|
|
|
|
|
.dropdown-menu-right {
|
|
|
|
|
right: 0 !important;
|
|
|
|
|
left: auto !important;
|
|
|
|
|
}
|
2021-04-14 09:00:30 -07:00
|
|
|
|
|
|
|
|
.sticky-top {
|
2021-04-17 22:33:06 +02:00
|
|
|
z-index: 990; // below main navbar
|
2021-04-14 09:00:30 -07:00
|
|
|
top: calc(7rem - 2px); // height of navbar (mobile)
|
|
|
|
|
|
2021-04-14 13:24:03 -07:00
|
|
|
@media (min-width: 580px) {
|
2021-04-14 09:00:30 -07:00
|
|
|
top: 3.5rem; // height of navbar
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-19 23:05:41 -08:00
|
|
|
|
|
|
|
|
.table .form-check {
|
|
|
|
|
padding: 0.2rem;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
|
|
.form-check-input {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|