2019-02-11 18:54:33 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
import QtQuick 2.11
|
|
|
|
|
import QtQuick.Controls 2.4
|
|
|
|
|
|
|
|
|
|
Label {
|
2020-01-24 10:15:21 +01:00
|
|
|
id: myLabel
|
2019-02-11 18:54:33 +01:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2020-05-11 06:51:26 -07:00
|
|
|
lineHeight: 0.8
|
2020-01-24 10:15:21 +01:00
|
|
|
property alias colorBackground: myLabelBackground.color
|
|
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
|
id: myLabelBackground
|
|
|
|
|
implicitWidth: myLabel.width
|
|
|
|
|
implicitHeight: myLabel.width
|
|
|
|
|
color: subsurfaceTheme.backgroundColor
|
|
|
|
|
}
|
2019-02-11 18:54:33 +01:00
|
|
|
}
|
|
|
|
|
|