mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
d9d6d90dc9
- legacy Style and ThemePalette removed - moved and deduplicated font definitions into `Theme` (unrelated to a color palette) - `Style.current.foo` -> `Theme.foo` - `Style.current.fooColor` -> `Theme.palette.fooColor` - upgrade the imports to 5.15 - removed some mode dead components Fixes #16514
41 lines
896 B
QML
41 lines
896 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import utils 1.0
|
|
import shared 1.0
|
|
import shared.panels 1.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
property string channel: "status"
|
|
signal clicked(string channel)
|
|
border.width: 1
|
|
radius: 8
|
|
width: children[0].width + 10
|
|
height: 32
|
|
border.color: Theme.palette.border
|
|
color: Theme.palette.transparent
|
|
|
|
StyledText {
|
|
id: suggestedChannelText
|
|
text: "#" + channel
|
|
font.weight: Font.Medium
|
|
color: Theme.palette.primaryColor1;
|
|
anchors.top: parent.top;
|
|
anchors.topMargin: 5;
|
|
anchors.left: parent.left;
|
|
anchors.leftMargin: 5;
|
|
horizontalAlignment: Text.AlignLeft;
|
|
font.pixelSize: 15
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
root.clicked(channel);
|
|
}
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
}
|