mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Fix theming
CURA-6435
This commit is contained in:
parent
9b603d1f4b
commit
904a8ab26c
19 changed files with 81 additions and 10 deletions
|
@ -41,6 +41,7 @@ UM.TooltipArea
|
|||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
font: UM.Theme.getFont("medium_bold")
|
||||
color: UM.Theme.getColor("text")
|
||||
renderType: Text.NativeRendering
|
||||
}
|
||||
|
||||
|
@ -59,13 +60,16 @@ UM.TooltipArea
|
|||
hoverEnabled: true
|
||||
selectByMouse: true
|
||||
|
||||
text: (propertyProvider.properties.value) ? propertyProvider.properties.value : ""
|
||||
font: UM.Theme.getFont("fixed")
|
||||
renderType: Text.NativeRendering
|
||||
text: (propertyProvider.properties.value) ? propertyProvider.properties.value : ""
|
||||
color: UM.Theme.getColor("text")
|
||||
wrapMode: TextEdit.NoWrap
|
||||
|
||||
background: Rectangle
|
||||
{
|
||||
color: UM.Theme.getColor("main_background")
|
||||
|
||||
border.color:
|
||||
{
|
||||
if (!gcodeTextArea.enabled)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue