mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-08 17:36:54 +00:00
Magnus Walbeck
a58dc593c2
Complete rewrite of core styling to realign with current Nextcloud, and rely more on CSS4 variable for theming.
31 lines
858 B
SCSS
31 lines
858 B
SCSS
/***
|
|
* @copyright Copyright (c) 2017, Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
|
|
*/
|
|
|
|
/* Announcement Center ------------------------------------------------------ */
|
|
|
|
.app-announcementcenter {
|
|
#announcement_submit_msg.success {
|
|
background-color: var(--color-success) !important;
|
|
}
|
|
|
|
.section > span {
|
|
color: var(--color-text-maxcontrast);
|
|
}
|
|
}
|
|
|
|
/* Icons -------------------------------------------------------------------- */
|
|
|
|
.app-announcementcenter {
|
|
.icon-announcementcenter,
|
|
.icon-announcementcenter-dark {
|
|
background-image: var(--icon-announcementcenter-announcementcenter-f2f2f2) !important;
|
|
}
|
|
|
|
.icon-notifications-off {
|
|
background-image: var(--icon-announcementcenter-notifications-off-f2f2f2) !important;
|
|
}
|
|
}
|