Merge pull request #54845 from nextcloud/backport/54836/stable31

[stable31] Fix dashboard icons
This commit is contained in:
Andy Scherzinger 2025-09-03 17:59:32 +02:00 committed by GitHub
commit 0e93590a70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 5 deletions

View file

@ -53,12 +53,12 @@ class FavoriteWidget implements IIconWidget, IAPIWidgetV2, IButtonWidget, IOptio
}
public function getIconClass(): string {
return 'icon-star-dark';
return 'icon-starred-dark';
}
public function getIconUrl(): string {
return $this->urlGenerator->getAbsoluteURL(
$this->urlGenerator->imagePath('core', 'actions/star.svg')
$this->urlGenerator->imagePath('core', 'actions/star-dark.svg')
);
}

View file

@ -563,6 +563,10 @@ export default {
</script>
<style lang="scss">
.icon-weather-status {
background-image: url('../img/app-dark.svg');
}
.weather-action-image-container {
width: var(--default-clickable-area);
height: var(--default-clickable-area);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long