fix(DroppableTextArea): add missing style file

This commit is contained in:
Ronan Abhamon 2016-10-17 15:44:05 +02:00
parent cb53ece64a
commit 35c7003bce

View file

@ -0,0 +1,21 @@
pragma Singleton
import QtQuick 2.7
import Common 1.0
QtObject {
property QtObject fileChooserButton: QtObject {
property int margins: 6
property int width: 40
}
property QtObject hoverContent: QtObject {
property color backgroundColor: Colors.k
property QtObject text: QtObject {
property color color: Colors.i
property int fontSize: 11
}
}
}