2021-10-18 14:33:52 +02:00
|
|
|
.app-container.has-background,
|
|
|
|
.link-share-container.has-background {
|
2022-04-02 17:05:30 +02:00
|
|
|
position: relative;
|
2020-05-31 21:17:10 +02:00
|
|
|
|
2022-04-02 17:05:30 +02:00
|
|
|
&, .app-container-background {
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-attachment: fixed;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: move to pagination component
|
2020-05-31 21:17:10 +02:00
|
|
|
.pagination-link:not(.is-current) {
|
2021-11-22 22:12:54 +01:00
|
|
|
background: var(--grey-100);
|
2020-05-31 21:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.box,
|
|
|
|
.card,
|
|
|
|
.switch-view,
|
2021-11-17 18:11:19 +01:00
|
|
|
.list-table .button,
|
2021-01-20 22:42:30 +01:00
|
|
|
.filter-container .button,
|
2020-05-31 21:17:10 +02:00
|
|
|
.search .button {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-view {
|
|
|
|
border-radius: $radius;
|
2021-07-23 11:09:23 +02:00
|
|
|
margin: 0 1rem;
|
2020-05-31 21:17:10 +02:00
|
|
|
}
|
2020-06-03 10:50:58 +02:00
|
|
|
|
|
|
|
.kanban .tasks {
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
.task {
|
|
|
|
border-radius: $radius !important;
|
|
|
|
}
|
|
|
|
}
|
2022-04-02 17:05:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-container-background {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background-fade-in {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity $transition;
|
|
|
|
transition-delay: $transition-duration * 2; // To fake an appearing background
|
|
|
|
|
|
|
|
&.is-visible {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|