fix: fix emoji popup and create community popop text color
This commit is contained in:
parent
c460206c58
commit
e33266aa2f
|
@ -142,7 +142,6 @@ ModalPopup {
|
||||||
anchors.top: descriptionTextArea.bottom
|
anchors.top: descriptionTextArea.bottom
|
||||||
anchors.topMargin: Style.current.smallPadding
|
anchors.topMargin: Style.current.smallPadding
|
||||||
font.pixelSize: 15
|
font.pixelSize: 15
|
||||||
color: Style.current.secondaryText
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Item {
|
||||||
StyledText {
|
StyledText {
|
||||||
id: categoryText
|
id: categoryText
|
||||||
text: modelData && modelData.length ? modelData[0].category.toUpperCase() : ""
|
text: modelData && modelData.length ? modelData[0].category.toUpperCase() : ""
|
||||||
color: Style.current.darkGrey
|
color: Style.current.secondaryText
|
||||||
font.pixelSize: 13
|
font.pixelSize: 13
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ Item {
|
||||||
visible: !!(allEmojis && allEmojis.length && allEmojis[0].empty)
|
visible: !!(allEmojis && allEmojis.length && allEmojis[0].empty)
|
||||||
//% "No recent emojis"
|
//% "No recent emojis"
|
||||||
text: qsTrId("no-recent-emojis")
|
text: qsTrId("no-recent-emojis")
|
||||||
color: Style.current.darkGrey
|
color: Style.current.secondaryText
|
||||||
font.pixelSize: 10
|
font.pixelSize: 10
|
||||||
anchors.top: categoryText.bottom
|
anchors.top: categoryText.bottom
|
||||||
anchors.topMargin: Style.current.smallPadding
|
anchors.topMargin: Style.current.smallPadding
|
||||||
|
|
|
@ -33,7 +33,7 @@ Rectangle {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
text: root.text
|
text: root.text
|
||||||
font.pixelSize: 15
|
font.pixelSize: 15
|
||||||
color: !root.isEnabled ? Style.current.darkGrey : Style.current.textColor
|
color: !root.isEnabled ? Style.current.secondaryText : Style.current.textColor
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
|
|
Loading…
Reference in New Issue