diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-09-06 21:08:14 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-11-23 21:51:01 +0100 |
commit | 8543125fa656ddc2c114072adfc27e4e7c461695 (patch) | |
tree | 176f90c03f64c2645932dbaf3d87f2ad22b61489 /gui/components/Header.qml | |
parent | b8e0fe3b5003d22043042110e8036f4383602545 (diff) |
[ui] transient connecting state
Diffstat (limited to 'gui/components/Header.qml')
-rw-r--r-- | gui/components/Header.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/components/Header.qml b/gui/components/Header.qml index 92f4bdd..6682a28 100644 --- a/gui/components/Header.qml +++ b/gui/components/Header.qml @@ -3,10 +3,12 @@ import QtQuick.Controls 2.4 import QtQuick.Dialogs 1.2 import QtQuick.Controls.Material 2.1 +import "../themes/themes.js" as Theme + ToolBar { visible: stackView.depth > 1 Material.foreground: Material.Black - Material.background: "#ffffff" + Material.background: Theme.bgColor Material.elevation: 0 contentHeight: settingsButton.implicitHeight @@ -27,6 +29,7 @@ ToolBar { Label { text: stackView.currentItem.title + font.bold: true anchors.centerIn: parent } } |