1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-06-06 22:40:29 +00:00
nextcloud-breeze-dark/core/css/apps/_deck.scss

138 lines
3 KiB
SCSS
Raw Permalink Normal View History

2018-07-17 16:05:08 +08:00
.app-deck #app-navigation {
.app-navigation-entry-edit {
background-color: $background-normal;
}
2018-02-03 19:04:56 +08:00
}
2018-07-17 16:05:08 +08:00
.app-deck #app-content {
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
#controls {
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
#stack-add {
background-color: $background-dark;
border: 1px solid $decoration-normal;
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
&:hover {
border-color: $decoration-active;
}
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.board-header-controls > button {
opacity: 1 !important;
2018-02-03 19:04:56 +08:00
}
}
2018-07-17 16:05:08 +08:00
#boardlist {
thead td {
opacity: 1;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
td {
border-bottom-color: $decoration-normal;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.board-create td{
border-bottom: none;
2018-02-03 19:04:56 +08:00
}
}
2018-07-17 16:05:08 +08:00
#board {
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.card {
background-color: $background-normal;
border: 1px solid $decoration-normal;
box-shadow: none;
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
&:hover, &.current {
border-color: $decoration-active;
}
2018-02-03 19:04:56 +08:00
&.create:hover {
background-color: $background-active-hover;
2018-07-17 16:05:08 +08:00
}
.card-controls {
background-color: $background-dark;
.due {
opacity: 0.7;
span {
color: $foreground-active;
}
&.overdue {
background-color: $background-negative;
opacity: 1;
}
&.now {
background-color: $background-neutral;
opacity: 1;
}
&.next {
background-color: unset;
opacity: 1;
}
}
.card-files {
opacity: 0.7;
}
}
}
2018-02-03 19:04:56 +08:00
}
2018-07-17 16:05:08 +08:00
#app-sidebar {
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
#sidebar-header h3 {
background-color: $background-normal;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
#board-detail-labels {
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
input {
border: none;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
li[ng-if$="status.createLabel"] input {
color: $foreground-normal !important;
}
2018-02-03 19:04:56 +08:00
}
2018-07-17 16:05:08 +08:00
#card-meta {
#card-dates {
2018-02-03 19:04:56 +08:00
opacity: 0.7;
}
2018-07-17 16:05:08 +08:00
.section-header {
border-bottom-color: $decoration-normal;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.card-description.section-content .container {
background-color: $background-normal;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.save-indicator.unsaved {
background-color: $background-alternate;
color: $foreground-normal;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
.attachment-list {
&.selector {
background-color: $background-normal;
box-shadow: none;
}
2018-02-03 19:04:56 +08:00
2018-07-17 16:05:08 +08:00
li.attachment .filesize, li.attachment .filedate {
color: $foreground-inactive;
}
}
}
2018-02-03 19:04:56 +08:00
}
}