From: Kevin Ottens Date: Mon, 15 Jun 2020 17:06:59 +0000 (+0200) Subject: Don't use a bright blue color for menus X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~152 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f147e5a66f43657805542904b43e0b4e662ffe04;p=nextcloud-desktop.git Don't use a bright blue color for menus As advised, use a light gray instead, this electric blue was a bit too much. Signed-off-by: Kevin Ottens --- diff --git a/src/gui/tray/UserLine.qml b/src/gui/tray/UserLine.qml index 6b0494035..706eccb49 100644 --- a/src/gui/tray/UserLine.qml +++ b/src/gui/tray/UserLine.qml @@ -133,7 +133,7 @@ MenuItem { width: 120 background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: 2 } diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 5f646621b..ddbd5594a 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -83,7 +83,7 @@ Window { anchors.fill: parent radius: Style.trayWindowRadius border.width: Style.trayWindowBorderWidth - border.color: Style.ncBlue + border.color: Style.menuBorder Rectangle { id: trayWindowHeaderBackground @@ -152,7 +152,7 @@ Window { closePolicy: "CloseOnPressOutside" background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: Style.currentAccountButtonRadius } @@ -400,7 +400,7 @@ Window { closePolicy: "CloseOnPressOutside" background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: 2 } diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 7f6774214..09e7bd991 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -8,6 +8,7 @@ QtObject { property color ncBlue: "#0082c9" property color ncBlueHover: "#009dd9" property color lightHover: "#f7f7f7" + property color menuBorder: "#ededed" // Fonts // We are using pixel size because this is cross platform comparable, point size isn't