1
0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2024-11-08 17:36:54 +00:00
nextcloud-breeze-dark/css/apps/official/_news.scss
Magnus Walbeck a58dc593c2
Rewrite core styling #133 (#163)
Complete rewrite of core styling to realign with current Nextcloud, and rely more on CSS4 variable for theming.
2020-10-06 19:12:45 +02:00

91 lines
1.9 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.
*/
/* News --------------------------------------------------------------------- */
.app-news #app-navigation {
.add-new .heading {
&:hover {
background-color: var(--color-background-hover);
}
button:active,
button:focus {
background-color: transparent;
}
}
#app-settings-content a {
color: var(--color-text-link);
}
}
.app-news #app-content {
.item.active {
background-image: none;
}
.body {
font-size: 15px;
a {
color: var(--color-text-link);
}
blockquote {
border-color: var(--color-primary-element);
}
h1,
h2,
h3 {
color: var(--color-primary-element);
}
}
}
.app-news #explore {
.grid-item {
border-color: var(--color-border);
}
.explore-footer a {
color: var(--color-text-link);
}
}
/* Icons -------------------------------------------------------------------- */
.app-news {
.icon-rss {
background-image: var(--icon-news-rss-f2f2f2) !important;
}
.icon-unpinned {
background-image: var(--icon-news-unpinned-f2f2f2) !important;
}
.icon-pinned {
background-image: var(--icon-news-pinned-f2f2f2) !important;
}
.icon-full-text-disabled {
background-image: var(--icon-news-nonfulltext-f2f2f2) !important;
}
.icon-full-text-enabled {
background-image: var(--icon-news-fulltext-f2f2f2) !important;
}
.icon-updatemode-default {
background-image: var(--icon-news-updatemodedefault-f2f2f2) !important;
}
.icon-updatemode-unread {
background-image: var(--icon-news-updatemodeunread-f2f2f2) !important;
}
}