Files
CuboBmsTool/qml/Controls/LabelWithBackground.qml

19 lines
367 B
QML

import QtQuick 2.12
import QtQuick.Controls 2.12
import Utils 1.0
Label {
color: Palette.textColor
font.pixelSize: 18
font.weight: Font.Bold
elide: Text.ElideRight
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
background: Rectangle {
color: Palette.hoveredBackgroundColor
radius: 8
}
}