Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-06-15 20:06:59 +0300
committerCamila <smayres@gmail.com>2020-06-16 19:52:20 +0300
commitf147e5a66f43657805542904b43e0b4e662ffe04 (patch)
treebbd1e20cf62ffec09791b57bee9f2ab16acd8d6e
parent2096e8295d9310bb08666b8f48fa16f19b532926 (diff)
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 <kevin.ottens@nextcloud.com>
-rw-r--r--src/gui/tray/UserLine.qml2
-rw-r--r--src/gui/tray/Window.qml6
-rw-r--r--theme/Style/Style.qml1
3 files changed, 5 insertions, 4 deletions
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