1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-05-14 13:32:21 +00:00

Add styling for Cookbook ()

This commit is contained in:
Magnus Walbeck 2020-06-07 12:17:25 +02:00 committed by GitHub
parent c52d71dc38
commit 47eb08c638
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 72 additions and 0 deletions
css

71
css/apps/thirdparty/_cookbook.scss vendored Normal file
View file

@ -0,0 +1,71 @@
/***
* @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-border-active);
}
}
.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;
}
}

View file

@ -65,6 +65,7 @@
@import 'apps/thirdparty/bbb';
@import 'apps/thirdparty/bookmarks';
@import 'apps/thirdparty/circles';
@import 'apps/thirdparty/cookbook';
@import 'apps/thirdparty/dashboard';
@import 'apps/thirdparty/flow-upload';
@import 'apps/thirdparty/fulltextsearch';