1
0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2024-09-21 20:17:56 +00:00
nextcloud-breeze-dark/css/apps/thirdparty/_cookbook.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

67 lines
1.4 KiB
SCSS

/***
* @copyright Copyright (c) 2020, Magnus Walbeck <mw@mwalbeck.org>
*
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
*/
/* Cookbook ----------------------------------------------------------------- */
.app-cookbook #app-navigation {
.download .action-input {
opacity: 1;
}
#app-settings {
.action-button {
opacity: 1;
}
}
}
.app-cookbook #app-content {
ul li a {
box-shadow: inset 0 0 0 1px var(--color-border);
color: var(--color-main-text);
&:hover,
&:focus,
&:active {
box-shadow: inset 0 0 0 1px var(--color-primary-element);
}
}
.times .time h4 {
background-color: var(--color-background-darker);
}
section {
h3 {
font-weight: 600;
}
main .instructions li::before {
background-color: var(--color-background-darker);
}
}
button > span[class^="icon-"] {
opacity: 1;
}
}
/* Icons -------------------------------------------------------------------- */
.app-cookbook {
.app-navigation-new button {
background-image: var(--icon-add-f2f2f2) !important;
}
.icon-arrow-up {
background-image: var(--icon-triangle-n-f2f2f2) !important;
}
.icon-arrow-down {
background-image: var(--icon-triangle-s-f2f2f2) !important;
}
}