Skip to content

Commit 0e93590

Browse files
Merge pull request #54845 from nextcloud/backport/54836/stable31
[stable31] Fix dashboard icons
2 parents 347f10b + a7d4d6b commit 0e93590

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
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/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);

0 commit comments

Comments
 (0)