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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2020-08-04 14:30:01 +0300
committerJaime van Kessel <nallath@gmail.com>2020-08-04 14:30:01 +0300
commit955b2950e81fbd58b4b69c5a284486127c2e85ba (patch)
tree90903cc7ecfbf2d1ae4ae8829e186df3837aef56 /resources
parentd8427b41096b0ce13b2593c824060394ce8cdd48 (diff)
Change tertiary button to use link text color
CURA-7627
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Account/SyncState.qml4
-rw-r--r--resources/qml/TertiaryButton.qml2
2 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/Account/SyncState.qml b/resources/qml/Account/SyncState.qml
index 66e7f7877b..f7630b500a 100644
--- a/resources/qml/Account/SyncState.qml
+++ b/resources/qml/Account/SyncState.qml
@@ -94,7 +94,7 @@ Row // Sync state icon + message
{
id: updatePackagesButton
text: catalog.i18nc("@button", "Install pending updates")
- color: UM.Theme.getColor("secondary_button_text")
+ color: UM.Theme.getColor("text_link")
font: UM.Theme.getFont("medium")
renderType: Text.NativeRendering
verticalAlignment: Text.AlignVCenter
@@ -116,7 +116,7 @@ Row // Sync state icon + message
{
id: accountSyncButton
text: catalog.i18nc("@button", "Check for account updates")
- color: UM.Theme.getColor("secondary_button_text")
+ color: UM.Theme.getColor("text_link")
font: UM.Theme.getFont("medium")
renderType: Text.NativeRendering
verticalAlignment: Text.AlignVCenter
diff --git a/resources/qml/TertiaryButton.qml b/resources/qml/TertiaryButton.qml
index e3840dbdd3..eb714c22f6 100644
--- a/resources/qml/TertiaryButton.qml
+++ b/resources/qml/TertiaryButton.qml
@@ -12,7 +12,7 @@ Cura.ActionButton
shadowEnabled: true
shadowColor: enabled ? UM.Theme.getColor("secondary_button_shadow"): UM.Theme.getColor("action_button_disabled_shadow")
color: "transparent"
- textColor: UM.Theme.getColor("secondary_button_text")
+ textColor: UM.Theme.getColor("text_link")
outlineColor: "transparent"
disabledColor: UM.Theme.getColor("action_button_disabled")
textDisabledColor: UM.Theme.getColor("action_button_disabled_text")