diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-07-20 11:30:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-20 11:30:43 +0200 |
commit | efaa0e4d47a8387e36ebb7400ba83fabb7ef5cc7 (patch) | |
tree | 628f9cb05da9cdaeb128395e7b9735cc62ffd992 /core | |
parent | 602a48c411cb242840a25f59e5eff44e40d0094c (diff) | |
parent | 92e0a1ab633baa1b8c086be01d275b2043a46644 (diff) | |
download | nextcloud-server-efaa0e4d47a8387e36ebb7400ba83fabb7ef5cc7.tar.gz nextcloud-server-efaa0e4d47a8387e36ebb7400ba83fabb7ef5cc7.zip |
Merge pull request #16470 from nextcloud/bugfix/noid/settings-menu-border-top_new
Add border-top to settings menu when its open
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 9444665e048..fbe79d005d8 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -736,7 +736,8 @@ $min-content-width: $breakpoint-mobile - $navigation-width - $list-min-width; border-top: solid 1px var(--color-border); } &:hover, - &:focus { + &:focus, + &.opened { background-color: var(--color-main-background); opacity: 1; box-shadow: inset 4px 0 var(--color-primary); |