d1a2eefca6
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/386 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
68 lines
No EOL
1.2 KiB
SCSS
68 lines
No EOL
1.2 KiB
SCSS
.app-container.has-background, .link-share-container.has-background {
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
min-height: 100vh;
|
|
|
|
.namespace-container {
|
|
background: $transparent-background-light;
|
|
}
|
|
|
|
.tasks {
|
|
background: $transparent-background-light;
|
|
border-radius: $radius;
|
|
|
|
.task:first-child {
|
|
border-radius: $radius $radius 0 0;
|
|
}
|
|
|
|
.task:last-child {
|
|
border-radius: 0 0 $radius $radius;
|
|
}
|
|
}
|
|
|
|
.table-view .table {
|
|
background: $transparent-background-light;
|
|
border-radius: $radius;
|
|
}
|
|
|
|
.pagination-link:not(.is-current) {
|
|
background: $light-background;
|
|
}
|
|
|
|
.box,
|
|
.card,
|
|
.switch-view,
|
|
.table-view .button,
|
|
.filter-container .button,
|
|
.search .button {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.task-view {
|
|
border-radius: $radius;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.kanban .tasks {
|
|
background: transparent;
|
|
|
|
.task {
|
|
border-radius: $radius !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar.has-background {
|
|
background: $transparent-background-light;
|
|
}
|
|
|
|
.link-share-container.has-background .view {
|
|
background: transparent;
|
|
border: none;
|
|
|
|
.logout .button {
|
|
box-shadow: none;
|
|
}
|
|
} |