13 lines
251 B
QML
13 lines
251 B
QML
|
import QtQuick 2.4
|
||
|
|
||
|
import "."
|
||
|
|
||
|
Text {
|
||
|
font.pixelSize: Style.baseFontPixelSize
|
||
|
|
||
|
property bool enabled: true
|
||
|
property bool hover: false
|
||
|
|
||
|
color: hover ? Style.themeColor : (root.enabled ? Style.baseTextColor : Style.disabledTextColor)
|
||
|
}
|