16 lines
346 B
CSS
16 lines
346 B
CSS
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
.icon-notes {
|
|
background-image: url(../img/notes-dark.svg);
|
|
filter: var(--background-invert-if-dark);
|
|
}
|
|
|
|
.icon-notes-trans {
|
|
background-image: url(../img/notes-trans.svg);
|
|
filter: var(--background-invert-if-dark);
|
|
}
|
|
|