From f721cc56850548990b668f9f41fe7032439200db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Thu, 14 Sep 2017 21:03:18 +0200 Subject: [PATCH] Fix entry edit buttons borders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- core/css/apps.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/core/css/apps.scss b/core/css/apps.scss index eab5683a5f..c94430c5e5 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; } } }