diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-07-18 18:04:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-18 18:04:44 +0200 |
commit | ab9207827b599c39242b76920175978a14def955 (patch) | |
tree | deafbf3725180262f7ae3ee461cc32e2823fdf3a | |
parent | 057e88e9e77c6f7e75423e4e2f4bc78fa042611a (diff) | |
parent | 8e4b5d02f4d9871566e5ef6319e05c98fff095a6 (diff) | |
download | nextcloud-server-ab9207827b599c39242b76920175978a14def955.tar.gz nextcloud-server-ab9207827b599c39242b76920175978a14def955.zip |
Merge pull request #16420 from nextcloud/bugfix/noid/settings-menu-border-top
Add border-top to settings menu when its open ref #16076
-rw-r--r-- | core/css/apps.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index ea0bfaa3c7d..9444665e048 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -711,7 +711,7 @@ $min-content-width: $breakpoint-mobile - $navigation-width - $list-min-width; } -.settings-button { +#app-settings-header .settings-button { display: block; height: 44px; width: 100%; @@ -732,7 +732,9 @@ $min-content-width: $breakpoint-mobile - $navigation-width - $list-min-width; color: var(--color-main-text); opacity: .57; - &.opened, + &.opened { + border-top: solid 1px var(--color-border); + } &:hover, &:focus { background-color: var(--color-main-background); |