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.topMargin: Style.current.smallPadding
|
||||
font.pixelSize: 15
|
||||
color: Style.current.secondaryText
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ Item {
|
|||
StyledText {
|
||||
id: categoryText
|
||||
text: modelData && modelData.length ? modelData[0].category.toUpperCase() : ""
|
||||
color: Style.current.darkGrey
|
||||
color: Style.current.secondaryText
|
||||
font.pixelSize: 13
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ Item {
|
|||
visible: !!(allEmojis && allEmojis.length && allEmojis[0].empty)
|
||||
//% "No recent emojis"
|
||||
text: qsTrId("no-recent-emojis")
|
||||
color: Style.current.darkGrey
|
||||
color: Style.current.secondaryText
|
||||
font.pixelSize: 10
|
||||
anchors.top: categoryText.bottom
|
||||
anchors.topMargin: Style.current.smallPadding
|
||||
|
|
|
@ -33,7 +33,7 @@ Rectangle {
|
|||
anchors.verticalCenter: parent.verticalCenter
|
||||
text: root.text
|
||||
font.pixelSize: 15
|
||||
color: !root.isEnabled ? Style.current.darkGrey : Style.current.textColor
|
||||
color: !root.isEnabled ? Style.current.secondaryText : Style.current.textColor
|
||||
}
|
||||
|
||||
StyledText {
|
||||
|
|
Loading…
Reference in New Issue