summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-16 10:00:39 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-16 10:00:39 +0200
commit64903619192b0336cd39291c5272738fc1a7f0a2 (patch)
tree51256a4977576a10cbe14e29a24bfc073587c891
parent8c2185252385153f2525d27fc5a9e57c3bbc8899 (diff)
Fix the talk dashboard icon on dark mode
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--css/icons.css4
-rw-r--r--lib/Dashboard/TalkWidget.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/css/icons.css b/css/icons.css
index 156d68b26..a390d3651 100644
--- a/css/icons.css
+++ b/css/icons.css
@@ -79,3 +79,7 @@
.app-files .app-sidebar__close.forced-white {
color: #ffffff;
}
+
+.dashboard-talk-icon {
+ background-image: url(../img/app-dark.svg);
+}
diff --git a/lib/Dashboard/TalkWidget.php b/lib/Dashboard/TalkWidget.php
index 380935c66..3afadc5bc 100644
--- a/lib/Dashboard/TalkWidget.php
+++ b/lib/Dashboard/TalkWidget.php
@@ -67,7 +67,7 @@ class TalkWidget implements IWidget {
* @inheritDoc
*/
public function getIconClass(): string {
- return 'icon-talk';
+ return 'dashboard-talk-icon';
}
/**