diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/SettingsListItem.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-phase0-20260815.tar.gz monzero-gui-phase0-20260815.tar.xz monzero-gui-phase0-20260815.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/SettingsListItem.qml')
| -rw-r--r-- | components/SettingsListItem.qml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/components/SettingsListItem.qml b/components/SettingsListItem.qml index 7c778704..1055abdc 100644 --- a/components/SettingsListItem.qml +++ b/components/SettingsListItem.qml @@ -2,7 +2,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.1 import FontAwesome 1.0 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents ColumnLayout { id: settingsListItem @@ -30,8 +30,8 @@ ColumnLayout { anchors.left: parent.left anchors.right: parent.right height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity } Rectangle { @@ -54,25 +54,25 @@ ColumnLayout { anchors.leftMargin: 16 anchors.verticalCenter: parent.verticalCenter - MoneroComponents.Label { + MonzeroComponents.Label { id: iconLabel fontSize: 32 fontFamily: FontAwesome.fontFamilySolid anchors.centerIn: parent - fontColor: MoneroComponents.Style.defaultFontColor + fontColor: MonzeroComponents.Style.defaultFontColor styleName: "Solid" } } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: header anchors.left: icon.right anchors.leftMargin: 16 anchors.top: parent.top - color: MoneroComponents.Style.defaultFontColor - opacity: MoneroComponents.Style.blackTheme ? 1.0 : 0.8 + color: MonzeroComponents.Style.defaultFontColor + opacity: MonzeroComponents.Style.blackTheme ? 1.0 : 0.8 font.bold: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 16 } @@ -82,8 +82,8 @@ ColumnLayout { anchors.topMargin: 4 anchors.left: icon.right anchors.leftMargin: 16 - color: MoneroComponents.Style.dimmedFontColor - font.family: MoneroComponents.Style.fontRegular.name + color: MonzeroComponents.Style.dimmedFontColor + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 15 horizontalAlignment: TextInput.AlignLeft wrapMode: Text.WordWrap; @@ -99,8 +99,8 @@ ColumnLayout { anchors.left: parent.left anchors.right: parent.right height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity visible: settingsListItem.isLast } @@ -109,21 +109,21 @@ ColumnLayout { cursorShape: Qt.PointingHandCursor anchors.fill: parent hoverEnabled: true - onEntered: root.color = MoneroComponents.Style.titleBarButtonHoverColor + onEntered: root.color = MonzeroComponents.Style.titleBarButtonHoverColor onExited: root.color = "transparent" onClicked: { settingsListItem.clicked() } } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { id: symbolText anchors.right: parent.right anchors.rightMargin: 44 anchors.verticalCenter: parent.verticalCenter font.pixelSize: 12 font.bold: true - color: MoneroComponents.Style.menuButtonTextColor + color: MonzeroComponents.Style.menuButtonTextColor visible: appWindow.ctrlPressed themeTransition: false } |
