fix(ui/modules/Common/Form/DroppableTextArea): fix color/font size

This commit is contained in:
Ronan Abhamon 2017-04-11 09:25:49 +02:00
parent 3c9afa3d53
commit 419017bc7b
2 changed files with 7 additions and 0 deletions

View file

@ -64,6 +64,8 @@ Item {
color: DroppableTextAreaStyle.backgroundColor
}
color: DroppableTextAreaStyle.text.color
font.pointSize: DroppableTextAreaStyle.text.fontSize
rightPadding: fileChooserButton.width +
fileChooserButton.anchors.rightMargin +
DroppableTextAreaStyle.fileChooserButton.margins

View file

@ -21,4 +21,9 @@ QtObject {
property int fontSize: 11
}
}
property QtObject text: QtObject {
property color color: Colors.d
property int fontSize: 10
}
}