nheko/resources/qml/delegates/Pill.qml

24 lines
574 B
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
// SPDX-FileCopyrightText: 2023 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.5
import QtQuick.Controls 2.1
2021-05-13 10:57:04 +02:00
import im.nheko 1.0
2019-09-09 21:42:33 +02:00
Label {
property bool isStateEvent
color: Nheko.colors.text
2020-10-08 21:11:21 +02:00
horizontalAlignment: Text.AlignHCenter
height: Math.round(fontMetrics.height * 1.4)
width: contentWidth * 1.2
2020-10-08 21:11:21 +02:00
background: Rectangle {
radius: parent.height / 2
2021-05-13 08:23:56 +02:00
color: Nheko.colors.alternateBase
2020-10-08 21:11:21 +02:00
}
2019-09-09 21:42:33 +02:00
}