fix(CreateCommunity): fix membership text color and spacing
This commit is contained in:
parent
e77012919b
commit
aab008d6ef
|
@ -48,9 +48,9 @@ ModalPopup {
|
||||||
id: scrollView
|
id: scrollView
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
rightPadding: Style.current.bigPadding
|
rightPadding: Style.current.bigPadding
|
||||||
anchors.rightMargin: - Style.current.bigPadding
|
anchors.rightMargin: - Style.current.padding
|
||||||
leftPadding: Style.current.bigPadding
|
leftPadding: Style.current.bigPadding
|
||||||
anchors.leftMargin: - Style.current.bigPadding
|
anchors.leftMargin: - Style.current.padding
|
||||||
contentHeight: content.height
|
contentHeight: content.height
|
||||||
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
||||||
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
||||||
|
@ -62,7 +62,7 @@ ModalPopup {
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: content
|
id: content
|
||||||
height: childrenRect.height
|
height: childrenRect.height + 100 // Bottom padding
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
||||||
Input {
|
Input {
|
||||||
|
@ -360,7 +360,9 @@ ModalPopup {
|
||||||
anchors.top: membershipRequirementSetting.bottom
|
anchors.top: membershipRequirementSetting.bottom
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
anchors.topMargin: isEdit ? 0 : Style.current.halfPadding
|
anchors.topMargin: isEdit ? 0 : Style.current.halfPadding
|
||||||
width: parent.width
|
font.pixelSize: 13
|
||||||
|
color: Style.current.secondaryText
|
||||||
|
width: parent.width * 0.78
|
||||||
text: qsTr("You can require new members to meet certain criteria before they can join. This can be changed at any time")
|
text: qsTr("You can require new members to meet certain criteria before they can join. This can be changed at any time")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue