- The input field was not using the theming.
- After submitting the reply, the text and icon on the left were moving.
Signed-off-by: Camila <hello@camila.codes>
Label {
id: talkReplyMessageSent
text: root.activityData.messageSent
- height: (text === "") ? 0 : implicitHeight
+ height: implicitHeight
width: parent.width
elide: Text.ElideRight
wrapMode: Text.Wrap
id: replyMessageTextFieldBorder
radius: 24
border.width: 1
- border.color: Style.ncBlue
+ border.color: parent.activeFocus ? UserModel.currentUser.accentColor : Style.menuBorder
color: Style.backgroundColor
}
onClicked: root.sendReplyMessage()
icon {
- source: "image://svgimage-custom-color/send.svg" + "/" + Style.ncBlue
+ source: "image://svgimage-custom-color/send.svg" + "/" + Style.menuBorder
width: 38
height: 38
- color: hovered || !sendReplyMessageButton.enabled? Style.menuBorder : Style.ncBlue
+ color: hovered || !sendReplyMessageButton.enabled? Style.menuBorder : UserModel.currentUser.accentColor
}
anchors {