Skip to content

Commit

Permalink
Hide prompt area in classic notebook output widget.
Browse files Browse the repository at this point in the history
This works around for the bug fixed in jupyter/notebook#2961

Thanks to @mheilman for noting the problem and suggesting a fix.

Fixes jupyter-widgets#1765
  • Loading branch information
jasongrout committed Oct 20, 2017
1 parent dcc4180 commit 8956d57
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions widgetsnbextension/src/widget_output.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@
.jupyter-widgets-output-area div.output_subarea {
max-width: 100%;
}

/* Work-around for the bug fixed in https://github.com/jupyter/notebook/pull/2961 */
.jupyter-widgets-output-area > .out_prompt_overlay {
display: none;
}

0 comments on commit 8956d57

Please sign in to comment.