mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2025-05-17 06:32:05 +00:00
35 lines
771 B
SCSS
35 lines
771 B
SCSS
.app-quicknotes #app-navigation {
|
|
|
|
#new-note-fixed {
|
|
background-color: $background-normal;
|
|
}
|
|
|
|
#colors-folder {
|
|
|
|
.circle-toolbar.any-color {
|
|
background-color: $background-alternate;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-quicknotes .quicknote {
|
|
color: #000000;
|
|
box-shadow: none;
|
|
}
|
|
|
|
// Change icons to black as the contrast with white is really bad
|
|
.app-quicknotes {
|
|
|
|
.icon-checkmark {
|
|
background-image: url('/core/css/../img/actions/checkmark.svg?v=1');
|
|
}
|
|
|
|
#div-content .icon-delete {
|
|
background-image: url('/core/css/../img/actions/delete.svg?v=1');
|
|
|
|
&:hover, &:focus {
|
|
background-image: $icon-delete-color;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|