mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-09 01:46:51 +00:00
53 lines
1.3 KiB
SCSS
53 lines
1.3 KiB
SCSS
/***
|
|
* @copyright Copyright (c) 2017, Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
|
|
*/
|
|
|
|
/* Activity ----------------------------------------------------------------- */
|
|
|
|
#no_more_activities,
|
|
.activity-icon {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.activitysubject strong.systemtag {
|
|
background-color: var(--color-main-background) !important;
|
|
border: 1px solid var(--color-border);
|
|
}
|
|
|
|
/* Icons -------------------------------------------------------------------- */
|
|
|
|
.icon-activity,
|
|
.icon-activity-dark {
|
|
background-image: var(--icon-activity-activity-f2f2f2) !important;
|
|
}
|
|
|
|
// Activity App: Navigation sidebar
|
|
.app-activity #app-navigation ul li a img {
|
|
filter: invert(95%);
|
|
}
|
|
|
|
// Activity App: Icons in activity feed
|
|
.app-activity .activity-icon,
|
|
.activity .activity-icon,
|
|
.activity .activity--header {
|
|
img[src$="share.svg"],
|
|
img[src$="change.svg"],
|
|
img[src$="calendar.svg"],
|
|
img[src$="comment.svg"],
|
|
img[src$="announcementcenter-dark.svg"],
|
|
img[src$="archive.svg"],
|
|
img[src$="tag.svg"],
|
|
img[src$="checkmark.svg"],
|
|
img[src$="personal.svg"],
|
|
img[src$="deck-dark.svg"],
|
|
img[src$="app-dark.svg"],
|
|
img[src$="password.svg"],
|
|
img[src$="star.svg"],
|
|
img[src$="files.svg"],
|
|
img[src$="download.svg"] {
|
|
filter: invert(95%);
|
|
}
|
|
}
|