mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-10 22:09:11 +02:00
50% opacity/bold shortcut text
This commit is contained in:
parent
1ddba8e787
commit
1a86b8d172
6 changed files with 13 additions and 9 deletions
|
@ -63,7 +63,7 @@ FocusScope {
|
|||
id: opaqueRect
|
||||
height: parent.height
|
||||
width: parent.width
|
||||
opacity: 0.25
|
||||
opacity: 0.5
|
||||
color: "black"
|
||||
}
|
||||
|
||||
|
|
|
@ -160,12 +160,13 @@ Item {
|
|||
text: "<a href='https://fake.link'>Already have a High Fidelity profile? Link to an existing profile here.</a>"
|
||||
|
||||
font.family: completeProfileBody.fontFamily
|
||||
font.pixelSize: 14
|
||||
font.pixelSize: completeProfileBody.fontSize
|
||||
font.bold: completeProfileBody.fontBold
|
||||
wrapMode: Text.WordWrap
|
||||
lineHeight: 2
|
||||
lineHeightMode: Text.ProportionalHeight
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
linkColor: hifi.colors.blueAccent
|
||||
|
||||
onLinkActivated: {
|
||||
loginDialog.isLogIn = true;
|
||||
|
@ -196,10 +197,11 @@ Item {
|
|||
|
||||
text: completeProfileBody.termsContainerText
|
||||
font.family: completeProfileBody.fontFamily
|
||||
font.pixelSize: 14
|
||||
font.pixelSize: completeProfileBody.fontSize
|
||||
font.bold: completeProfileBody.fontBold
|
||||
wrapMode: Text.WordWrap
|
||||
color: hifi.colors.baseGrayHighlight
|
||||
color: hifi.colors.lightGray
|
||||
linkColor: hifi.colors.blueAccent
|
||||
lineHeight: 1
|
||||
lineHeightMode: Text.ProportionalHeight
|
||||
|
||||
|
|
|
@ -326,6 +326,7 @@ Item {
|
|||
}
|
||||
font.family: linkAccountBody.fontFamily
|
||||
font.pixelSize: linkAccountBody.textFieldFontSize
|
||||
font.bold: linkAccountBody.fontBold
|
||||
|
||||
text: "<a href='https://highfidelity.com/users/password/new'> Can't access your account?</a>"
|
||||
|
||||
|
@ -409,7 +410,8 @@ Item {
|
|||
lineHeight: 1
|
||||
color: "white"
|
||||
font.family: linkAccountBody.fontFamily
|
||||
font.pixelSize: 18
|
||||
font.pixelSize: linkAccountBody.textFieldFontSize
|
||||
font.bold: linkAccountBody.fontBold
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
}
|
||||
|
@ -418,7 +420,8 @@ Item {
|
|||
id: signUpShortcutText
|
||||
z: 10
|
||||
font.family: linkAccountBody.fontFamily
|
||||
font.pixelSize: 18
|
||||
font.pixelSize: linkAccountBody.textFieldFontSize
|
||||
font.bold: linkAccountBody.fontBold
|
||||
anchors {
|
||||
left: signUpText.right
|
||||
leftMargin: hifi.dimensions.contentSpacing.x
|
||||
|
|
|
@ -105,7 +105,6 @@ Item {
|
|||
font.family: "Fira Sans"
|
||||
font.pixelSize: usernameCollisionBody.textFieldFontSize
|
||||
styleRenderType: Text.QtRendering
|
||||
font.bold: usernameCollisionBody.fontBold
|
||||
width: root.bannerWidth
|
||||
|
||||
placeholderText: "Choose your own"
|
||||
|
|
|
@ -64,7 +64,7 @@ FocusScope {
|
|||
id: opaqueRect
|
||||
height: parent.height
|
||||
width: parent.width
|
||||
opacity: 0.25
|
||||
opacity: 0.5
|
||||
color: "black"
|
||||
}
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ FocusScope {
|
|||
id: opaqueRect
|
||||
height: parent.height
|
||||
width: parent.width
|
||||
opacity: 0.25
|
||||
opacity: 0.5
|
||||
color: "black"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue