From a954639cbadb2358a0803139e9ce031c155d38f5 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 13 Apr 2021 17:24:07 +0200 Subject: [PATCH] fix(ui): use correct light theme color for app bar divider --- ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml | 2 +- ui/imports/Themes/DarkTheme.qml | 1 + ui/imports/Themes/LightTheme.qml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml b/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml index fa43eddc36..5470817009 100644 --- a/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml +++ b/ui/app/AppLayouts/Chat/components/LeftTabBottomButtons.qml @@ -14,7 +14,7 @@ Column { Rectangle { width: 40 height: 1 - color: Style.current.border + color: Style.current.appBarDividerColor anchors.horizontalCenter: parent.horizontalCenter } diff --git a/ui/imports/Themes/DarkTheme.qml b/ui/imports/Themes/DarkTheme.qml index 2b3ac8b2be..a2a82268f6 100644 --- a/ui/imports/Themes/DarkTheme.qml +++ b/ui/imports/Themes/DarkTheme.qml @@ -32,6 +32,7 @@ Theme { property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1) property color background: "#2C2C2C" + property color appBarDividerColor: darkGrey property color border: darkGrey property color borderSecondary: tenPercentWhite property color borderTertiary: blue diff --git a/ui/imports/Themes/LightTheme.qml b/ui/imports/Themes/LightTheme.qml index 12b53ba228..0cd581e945 100644 --- a/ui/imports/Themes/LightTheme.qml +++ b/ui/imports/Themes/LightTheme.qml @@ -32,6 +32,7 @@ Theme { property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1) property color background: white + property color appBarDividerColor: darkGrey property color border: grey property color borderSecondary: tenPercentBlack property color borderTertiary: blue