diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-14 21:03:18 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-21 14:00:37 +0200 |
commit | f721cc56850548990b668f9f41fe7032439200db (patch) | |
tree | 13cacbac6269d78b5555d3bb24ec7d3c1f43d736 | |
parent | f43b832d84689e6d751f1e3dbe3cf38eb914dd1f (diff) | |
download | nextcloud-server-f721cc56850548990b668f9f41fe7032439200db.tar.gz nextcloud-server-f721cc56850548990b668f9f41fe7032439200db.zip |
Fix entry edit buttons borders
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/apps.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index eab5683a5f0..c94430c5e57 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -411,6 +411,10 @@ kbd { margin-right: 0; height: 38px; border: 1px solid nc-darken($color-main-background, 8%); + &:hover { + /* overlapp borders */ + z-index: 1; + } } input[type='text'] { width: 100%; @@ -424,13 +428,13 @@ kbd { height: 38px; &:not(:last-child) { border-radius: 0; - border-left: 0; + } + &:not(:first-child) { + margin-left: -1px; } &:last-child { border-bottom-left-radius: 0; border-top-left-radius: 0; - border-left: 0; - margin-right: 0; } } } |