Skip to content

Commit

Permalink
Merge pull request #7725 from nextcloud/bugfix/tray-ui-colours
Browse files Browse the repository at this point in the history
gui/tray: Fix colour for secondary text items being too pale
  • Loading branch information
mgallien authored Jan 7, 2025
2 parents dd888a1 + 0daec76 commit 7f0ea06
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/gui/macOS/ui/FileProviderFileDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Item {
EnforcedPlainTextLabel {
id: fileTypeLabel
text: root.fileTypeString
color: palette.midlight
color: palette.dark
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/macOS/ui/FileProviderSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Page {
Rectangle {
Layout.fillWidth: true
height: Style.normalBorderWidth
color: palette.midlight
color: palette.dark
}

FileProviderSyncStatus {
Expand Down
2 changes: 1 addition & 1 deletion src/gui/macOS/ui/FileProviderStorageInfo.qml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ GridLayout {
Layout.fillWidth: true
text: qsTr("%1 GB of %2 GB remote files synced").arg(root.localUsedStorage.toFixed(2)).arg(root.remoteUsedStorage.toFixed(2));
elide: Text.ElideRight
color: palette.midlight
color: palette.dark
horizontalAlignment: Text.AlignRight
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/ActivityList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ ScrollView {
verticalAlignment: Image.AlignVCenter
horizontalAlignment: Image.AlignHCenter
fillMode: Image.PreserveAspectFit
source: "image://svgimage-custom-color/activity.svg/" + palette.midlight
source: "image://svgimage-custom-color/activity.svg/" + palette.dark
}

EnforcedPlainTextLabel {
Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/ListItemLineAndSubline.qml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ColumnLayout {
property int sublineFontSize: Style.unifiedSearchResultSublineFontSize

property color titleColor: palette.windowText
property color sublineColor: palette.midlight
property color sublineColor: palette.dark

EnforcedPlainTextLabel {
id: title
Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/NCBusyIndicator.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import Style
BusyIndicator {
id: root

property color color: palette.midlight
property color color: palette.dark
property string imageSource: "image://svgimage-custom-color/change.svg/"

property int imageSourceSizeWidth: 64
Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/UnifiedSearchResultFetchMoreTrigger.qml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ColumnLayout {

property int fontSize: Style.unifiedSearchResultTitleFontSize

property string textColor: palette.midlight
property string textColor: palette.dark

Accessible.role: Accessible.ListItem
Accessible.name: unifiedSearchResultItemFetchMoreText.text
Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/UnifiedSearchResultItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RowLayout {
property int sublineFontSize: Style.unifiedSearchResultSublineFontSize

property color titleColor: palette.buttonText
property color sublineColor: palette.midlight
property color sublineColor: palette.dark


Accessible.role: Accessible.ListItem
Expand Down

0 comments on commit 7f0ea06

Please sign in to comment.