Skip to content

Commit 13210bc

Browse files
Merge pull request #54836 from nextcloud/bugfix/noid/fix-dashboard-icons
Fix dashboard icons
2 parents bc2321d + 01a1c0c commit 13210bc

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

apps/files/lib/Dashboard/FavoriteWidget.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ public function getOrder(): int {
5353
}
5454

5555
public function getIconClass(): string {
56-
return 'icon-star-dark';
56+
return 'icon-starred-dark';
5757
}
5858

5959
public function getIconUrl(): string {
6060
return $this->urlGenerator->getAbsoluteURL(
61-
$this->urlGenerator->imagePath('core', 'actions/star.svg')
61+
$this->urlGenerator->imagePath('core', 'actions/star-dark.svg')
6262
);
6363
}
6464

apps/user_status/img/app-dark.svg

Lines changed: 1 addition & 1 deletion
Loading

apps/user_status/img/app.svg

Lines changed: 1 addition & 1 deletion
Loading

apps/weather_status/src/App.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,10 @@ export default {
563563
</script>
564564
565565
<style lang="scss">
566+
.icon-weather-status {
567+
background-image: url('../img/app-dark.svg');
568+
}
569+
566570
.weather-action-image-container {
567571
width: var(--default-clickable-area);
568572
height: var(--default-clickable-area);

dist/weather_status-weather-status.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/weather_status-weather-status.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)