Remove uses of border_main_light. The only puprose of this color was to give dark mode access to the border_main of the light theme. CURA-8991
@@ -91,7 +91,7 @@ UM.TooltipArea
}
if (gcodeTextArea.hovered || gcodeTextArea.activeFocus)
{
- return UM.Theme.getColor("border_main_light")
+ return UM.Theme.getColor("border_main")
return UM.Theme.getColor("border_field_light")
@@ -107,7 +107,7 @@ UM.TooltipArea
// Validation is OK.
if (textFieldWithUnit.hovered || textFieldWithUnit.activeFocus)
@@ -69,7 +69,7 @@ ToolButton
target: background
color: UM.Theme.getColor("setting_control")
- liningColor: UM.Theme.getColor("border_main_light")
+ liningColor: UM.Theme.getColor("border_main")
},
State
@@ -129,7 +129,7 @@ Item
background: UM.UnderlineBackground
id: backgroundItem
- liningColor: intentSelection.hovered ? UM.Theme.getColor("border_main_light") : UM.Theme.getColor("border_field_light")
+ liningColor: intentSelection.hovered ? UM.Theme.getColor("border_main") : UM.Theme.getColor("border_field_light")
UM.SimpleButton
@@ -135,7 +135,7 @@ SettingItem
if (control.hovered || control.activeFocus)
@@ -136,7 +136,7 @@ SettingItem
@@ -52,7 +52,7 @@ SettingItem
//Validation is OK.
if(hovered || input.activeFocus)
@@ -33,7 +33,7 @@ ComboBox
name: "highlighted"
when: control.hovered || control.activeFocus
- PropertyChanges { target: background; liningColor: UM.Theme.getColor("border_main_light")}
+ PropertyChanges { target: background; liningColor: UM.Theme.getColor("border_main")}
]
@@ -44,7 +44,7 @@ TextField
name: "hovered"
when: textField.hovered || textField.activeFocus
- PropertyChanges { target: backgroundRectangle; liningColor: UM.Theme.getColor("border_main_light")}
+ PropertyChanges { target: backgroundRectangle; liningColor: UM.Theme.getColor("border_main")}