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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Cambra <claudio.cambra@gmail.com>2022-11-08 20:17:29 +0300
committerGitHub <noreply@github.com>2022-11-08 20:17:29 +0300
commit957caef67b9a613cf4763b2b930879fa408a02b5 (patch)
tree8704d5cdacdba5133eeceee3fe492824fe813abc
parent2c1ef6e4a8094a3db4c2c07f75f7ca10dda06010 (diff)
parent31a89c68d75d6b60f2f2d2e456a302824780a769 (diff)
Merge pull request #5132 from nextcloud/bugfix/dark-mode-share-delegate-buttons
Fix share delegate button icon colors in dark mode
-rw-r--r--src/gui/filedetails/ShareDelegate.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/filedetails/ShareDelegate.qml b/src/gui/filedetails/ShareDelegate.qml
index 7b8626e7b..613f40228 100644
--- a/src/gui/filedetails/ShareDelegate.qml
+++ b/src/gui/filedetails/ShareDelegate.qml
@@ -256,7 +256,7 @@ GridLayout {
bgColor: Style.lightHover
bgNormalOpacity: 0
- imageSource: "qrc:///client/theme/add.svg"
+ imageSource: "image://svgimage-custom-color/add.svg/" + Style.ncTextColor
visible: root.isPlaceholderLinkShare && root.canCreateLinkShares
enabled: visible
@@ -276,7 +276,7 @@ GridLayout {
bgColor: Style.lightHover
bgNormalOpacity: 0
- imageSource: "qrc:///client/theme/copy.svg"
+ imageSource: "image://svgimage-custom-color/copy.svg/" + Style.ncTextColor
icon.width: 16
icon.height: 16
@@ -305,7 +305,7 @@ GridLayout {
bgColor: Style.lightHover
bgNormalOpacity: 0
- imageSource: "qrc:///client/theme/more.svg"
+ imageSource: "image://svgimage-custom-color/more.svg/" + Style.ncTextColor
visible: !root.isPlaceholderLinkShare
enabled: visible