From c409932bc2ebff515266e2e0fd7082d6c5018266 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Wed, 21 Oct 2015 16:36:18 -0700 Subject: [PATCH] Fix command palette appearance on FF. Closes #559 --- notebook/static/notebook/less/commandpalette.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/notebook/static/notebook/less/commandpalette.less b/notebook/static/notebook/less/commandpalette.less index eb6f2ff2a..f7f4e89d8 100644 --- a/notebook/static/notebook/less/commandpalette.less +++ b/notebook/static/notebook/less/commandpalette.less @@ -6,6 +6,12 @@ ul.typeahead-list i{ ul.typeahead-list { max-height: 80vh; overflow:auto; + + & > li > a { + /** Firefox bug **/ + /* see https://github.com/jupyter/notebook/issues/559 */ + white-space: normal; + } } .cmd-palette {