fix: fix emoji popup and create community popop text color

This commit is contained in:
Jonathan Rainville 2021-03-26 17:33:23 -04:00 committed by Iuri Matias
parent c460206c58
commit e33266aa2f
3 changed files with 3 additions and 4 deletions

View File

@ -142,7 +142,6 @@ ModalPopup {
anchors.top: descriptionTextArea.bottom
anchors.topMargin: Style.current.smallPadding
font.pixelSize: 15
color: Style.current.secondaryText
}

View File

@ -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

View File

@ -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 {