mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Move remaining uses of secondary text color to use palette midlight, remove this property froms style
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
0a40388a7a
commit
4a383f93fc
4 changed files with 3 additions and 4 deletions
|
@ -81,7 +81,7 @@ Item {
|
|||
EnforcedPlainTextLabel {
|
||||
id: fileTypeLabel
|
||||
text: root.fileTypeString
|
||||
color: Style.ncSecondaryTextColor
|
||||
color: palette.midlight
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@ Page {
|
|||
Rectangle {
|
||||
Layout.fillWidth: true
|
||||
height: Style.normalBorderWidth
|
||||
color: Style.ncSecondaryTextColor
|
||||
color: palette.midlight
|
||||
}
|
||||
|
||||
FileProviderSyncStatus {
|
||||
|
|
|
@ -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: Style.ncSecondaryTextColor
|
||||
color: palette.midlight
|
||||
horizontalAlignment: Text.AlignRight
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@ QtObject {
|
|||
readonly property color ncHeaderTextColor: Theme.wizardHeaderTitleColor
|
||||
readonly property color ncTextColor: Theme.systemPalette.windowText
|
||||
readonly property color ncTextBrightColor: "white"
|
||||
readonly property color ncSecondaryTextColor: "#808080"
|
||||
readonly property color backgroundColor: Theme.systemPalette.base
|
||||
readonly property color positiveColor: Qt.rgba(0.38, 0.74, 0.38, 1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue