mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-17 17:28:02 +00:00
9 lines
234 B
CSS
9 lines
234 B
CSS
/**
|
|
* Dashboard widget icon theming
|
|
* Inverts dark icons in dark mode using Nextcloud's CSS variable
|
|
*/
|
|
img[src*="/forum/img/thread-dark.svg"],
|
|
img[src*="/forum/img/folder-dark.svg"] {
|
|
filter: var(--background-invert-if-dark);
|
|
}
|