Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/activity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Röhrl <jakob.roehrl@web.de>2021-07-01 14:52:54 +0300
committerJakob Röhrl <jakob.roehrl@web.de>2021-07-01 14:52:54 +0300
commita78bcf662b7f58d170b1d29b68e853ad69f80fdb (patch)
treea4bcd7404f2491ad771cbff894cd3a51d56fcbd5 /src
parent6eedd8454d7dc1fbd1c849ba8dbfb407f4d37e28 (diff)
fix dark icons
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
Diffstat (limited to 'src')
-rw-r--r--src/views/Dashboard.vue11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue
index 3749d388..aacd2597 100644
--- a/src/views/Dashboard.vue
+++ b/src/views/Dashboard.vue
@@ -117,13 +117,10 @@ export default {
<style lang="scss">
#activity_panel {
- .calendar-dot {
- height: 1rem;
- width: 1rem;
- margin-top: .2rem;
- border-radius: 50%;
- min-width: 1rem;
- min-height: 1rem;
+ .item-icon {
+ body.theme--dark & {
+ filter: invert(100%);
+ }
}
}
</style>