Skip to content

Commit

Permalink
UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLazarescu committed Feb 11, 2024
1 parent 72029c6 commit f6d75cd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 36 deletions.
1 change: 1 addition & 0 deletions src/presentation/homePage/manageTagsPopup/MTagItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Item {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
propagateComposedEvents: true

onPressed: mouse => mouse.accepted = false
Expand Down
49 changes: 13 additions & 36 deletions src/presentation/settings/MStoragePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -137,43 +137,20 @@ MFlickWrapper {
font.pointSize: Fonts.size46
}

RowLayout {
id: upgradeButtonRow
MButton {
id: inlineUpgradeButton
Layout.fillWidth: true
Layout.topMargin: 36
spacing: 12

MButton {
id: inlineUpgradeButton
Layout.preferredWidth: 110
Layout.preferredHeight: 38
borderWidth: 0
backgroundColor: Style.colorBasePurple
text: qsTr("Upgrade")
fontSize: Fonts.size12
fontWeight: Font.Bold
textColor: Style.colorFocusedButtonText

onClicked: Qt.openUrlExternally(
AppInfoController.website + "/pricing")
}

MButton {
id: whyOfferingTiersButton
Layout.fillWidth: true
Layout.preferredHeight: 38
borderWidth: 1
borderColor: Style.colorCheckboxBorder
opacityOnPressed: 0.75
backgroundColor: "transparent"
text: qsTr("See why we offer multiple tiers")
fontSize: Fonts.size12
fontWeight: Font.Medium
textColor: Style.colorText

onClicked: Qt.openUrlExternally(
AppInfoController.website + "/whyTiers")
}
Layout.preferredHeight: 38
Layout.topMargin: 39
borderWidth: 0
backgroundColor: Style.colorBasePurple
text: qsTr("Upgrade Now")
fontSize: Fonts.size12
fontWeight: Font.Bold
textColor: Style.colorFocusedButtonText

onClicked: Qt.openUrlExternally(
AppInfoController.website + "/pricing")
}
}
}
Expand Down

0 comments on commit f6d75cd

Please sign in to comment.