1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-06-18 03:40:52 +00:00
nextcloud-breeze-dark/css/apps/official/_deck.scss

102 lines
2.2 KiB
SCSS
Raw Normal View History

2020-02-23 20:17:48 +01:00
/***
* @copyright Copyright (c) 2018, Magnus Walbeck <mw@mwalbeck.org>
*
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
*/
2020-02-23 20:17:48 +01:00
2018-12-11 15:35:19 +08:00
/* Deck --------------------------------------------------------------------- */
2018-02-03 19:04:56 +08:00
.app-deck .app-navigation__list > .app-navigation-entry {
border-right: 1px solid var(--color-border);
}
.card {
background-color: var(--color-background-darker) !important;
border: 1px solid var(--color-border);
2019-05-01 17:27:50 +08:00
&:hover,
&.current-card {
border-color: var(--color-primary-element) !important;
}
2018-07-17 16:05:08 +08:00
.due,
.due.overdue {
opacity: 1 !important;
}
.due.next {
background-color: var(--color-neutral) !important;
opacity: 1 !important;
2018-07-17 16:05:08 +08:00
span {
color: var(--color-text-dark);
2018-07-17 16:05:08 +08:00
}
2018-02-03 19:04:56 +08:00
}
.due.now {
opacity: 1 !important;
span {
color: var(--color-text-dark);
}
2019-05-01 17:27:50 +08:00
}
2020-05-17 16:38:36 +02:00
}
2018-02-03 19:04:56 +08:00
.modal-wrapper .modal-container {
box-shadow: unset !important;
2020-05-17 16:38:36 +02:00
}
2020-05-17 16:38:36 +02:00
/* Icons -------------------------------------------------------------------- */
2020-05-17 16:38:36 +02:00
.icon-deck {
background-image: var(--icon-deck-deck-f2f2f2) !important;
}
2020-05-17 16:38:36 +02:00
.icon-archive {
background-image: var(--icon-deck-archive-f2f2f2) !important;
2019-05-01 17:27:50 +08:00
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-toggle-compact-expanded {
background-image: var(--icon-deck-toggle-view-collapse-f2f2f2) !important;
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-toggle-compact-collapsed {
background-image: var(--icon-deck-toggle-view-expand-f2f2f2) !important;
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-clone {
background-image: var(--icon-deck-clone-f2f2f2) !important;
2020-05-17 16:38:36 +02:00
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-filter {
background-image: var(--icon-deck-filter-f2f2f2) !important;
2020-05-17 16:38:36 +02:00
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-attach {
background-image: var(--icon-deck-attach-f2f2f2) !important;
2020-05-17 16:38:36 +02:00
}
2020-02-24 20:53:04 +01:00
2020-05-17 16:38:36 +02:00
.icon-calendar-dark.now,
.icon-calendar-dark.next {
background-image: var(--icon-calendar-000) !important;
2020-02-24 20:53:04 +01:00
}
.icon-filter_set {
background-image: var(--icon-deck-filter_set-f2f2f2) !important;
}
.icon-reply {
background-image: var(--icon-deck-reply-f2f2f2) !important;
}
.resource-type-deck {
img[src$="deck-dark.svg"] {
filter: invert(95%);
opacity: 0.7 !important;
}
&:hover img[src$="deck-dark.svg"] {
opacity: 1 !important;
}
}