From 55df92588f2c0dc0aabaca5175b814b0a014ac0a Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Mon, 22 Feb 2016 16:08:44 -0800 Subject: [PATCH] fix(list): Restore keyboard cursor to single pane mode --- static/components/list-tabular.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/static/components/list-tabular.less b/static/components/list-tabular.less index c2275846f..92f4d1a4e 100644 --- a/static/components/list-tabular.less +++ b/static/components/list-tabular.less @@ -138,16 +138,14 @@ body.is-blurred { display: flex; align-items: center; border-bottom: 1px solid @list-border; + border-left:4px solid transparent; &:hover { cursor: default; } &.keyboard-cursor { - .list-column:first-child { - border-left:4px solid @list-focused-bg; - padding-left:8px; - } + border-left:4px solid @list-focused-bg; } &.selected { @@ -198,7 +196,9 @@ body.is-blurred { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; - + &:first-child { + padding-left: @padding-base-horizontal - 4; + } &:last-child { text-align: right; }