Browse Source

Always enable the scroll bar for the completer. (#3548)

This works around a firefox issue we are seeing, documented at https://github.com/jupyterlab/jupyterlab/issues/3543 and https://github.com/jupyterlab/jupyterlab/issues/3543#issuecomment-355697550.
Jason Grout 7 years ago
parent
commit
a3a72c69cd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/completer/style/index.css

+ 2 - 1
packages/completer/style/index.css

@@ -18,7 +18,8 @@
   color: var(--jp-content-font-color1);
   border: var(--jp-border-width) solid var(--jp-border-color1);
   list-style-type: none;
-  overflow: auto;
+  overflow-y: scroll;
+  overflow-x: auto;
   padding: 0;
   /* Position the completer relative to the text editor, align the '.' */
   margin: 4px 0 0 -30px;