From 8fbfa905a9c5514aab8e8feb648f6bc3a69c493e 2012-06-13 07:55:08 From: Fernando Perez Date: 2012-06-13 07:55:08 Subject: [PATCH] Merge pull request #1940 from Carreau/completer-css-patch Fix completer css on some Chrome versions (was causing completer to be drawn at the wrong size). Fixes #1833 --- diff --git a/IPython/frontend/html/notebook/static/css/notebook.css b/IPython/frontend/html/notebook/static/css/notebook.css index c085244..a9f2862 100644 --- a/IPython/frontend/html/notebook/static/css/notebook.css +++ b/IPython/frontend/html/notebook/static/css/notebook.css @@ -278,7 +278,7 @@ div.text_cell_render { .completions { position: absolute; z-index: 10; - overflow: auto; + overflow: hidden; border: 1px solid grey; } @@ -288,6 +288,7 @@ div.text_cell_render { border: none; padding: 0px; margin: 0px; + overflow: auto; font-family: monospace; }