diff options
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 } |
