Merge pull request #2110 from nextcloud/sbeyer-menu-border-colors

Darken menu border color
This commit is contained in:
Kevin Ottens 2020-06-22 11:58:10 +02:00 committed by GitHub
commit d5113b5342
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -201,7 +201,12 @@ Window {
onClicked: UserModel.addAccount()
}
MenuSeparator { id: accountMenuSeparator }
MenuSeparator {
contentItem: Rectangle {
implicitHeight: 1
color: Style.menuBorder
}
}
MenuItem {
id: syncPauseButton

View file

@ -8,7 +8,7 @@ QtObject {
property color ncBlue: "#0082c9"
property color ncBlueHover: "#009dd9"
property color lightHover: "#f7f7f7"
property color menuBorder: "#ededed"
property color menuBorder: "#bdbdbd"
// Fonts
// We are using pixel size because this is cross platform comparable, point size isn't