From 2b4145e50621cceb46a071690555bc7bb60469e1 Mon Sep 17 00:00:00 2001 From: Vidar Tonaas Fauske Date: Thu, 23 Feb 2017 15:04:39 +0100 Subject: [PATCH] [TagsUI] Prevent highlighting of tagbar input box --- notebook/static/notebook/less/tagbar.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/notebook/static/notebook/less/tagbar.less b/notebook/static/notebook/less/tagbar.less index 151d3c9f3..0cec30a50 100644 --- a/notebook/static/notebook/less/tagbar.less +++ b/notebook/static/notebook/less/tagbar.less @@ -61,3 +61,9 @@ .cell-tag { background-color: #fff; } + +.tags-input input[type=text]:focus { + outline: none; + box-shadow: none; + border-color: #ccc; +}