moment/src/qml/Chat/Timeline/EventImageTextBubble.qml

27 lines
511 B
QML
Raw Normal View History

import QtQuick 2.12
import "../../Base"
HLabel {
id: bubble
anchors.margins: theme.spacing / 4
topPadding: theme.spacing / 2
bottomPadding: topPadding
leftPadding: theme.spacing / 1.5
rightPadding: leftPadding
font.pixelSize: theme.fontSize.small
background: Rectangle {
color: Qt.hsla(0, 0, 0, 0.7)
radius: theme.radius
}
Binding {
target: bubble
property: "visible"
value: false
when: ! Boolean(bubble.text)
}
}