mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
Merge pull request #7718 from jdfreder/widecontents
Disable output contents from overflowing page width.
This commit is contained in:
commit
52bd09952a
@ -94,6 +94,8 @@ div.output_area pre {
|
||||
/* This class is for the output subarea inside the output_area and after
|
||||
the prompt div. */
|
||||
div.output_subarea {
|
||||
// Don't let contents overflow page area.
|
||||
overflow-x: auto;
|
||||
padding: @code_padding;
|
||||
.box-flex1();
|
||||
}
|
||||
|
1
IPython/html/static/style/ipython.min.css
vendored
1
IPython/html/static/style/ipython.min.css
vendored
@ -873,6 +873,7 @@ div.output_area pre {
|
||||
/* This class is for the output subarea inside the output_area and after
|
||||
the prompt div. */
|
||||
div.output_subarea {
|
||||
overflow-x: auto;
|
||||
padding: 0.4em;
|
||||
/* Old browsers */
|
||||
-webkit-box-flex: 1;
|
||||
|
1
IPython/html/static/style/style.min.css
vendored
1
IPython/html/static/style/style.min.css
vendored
@ -9665,6 +9665,7 @@ div.output_area pre {
|
||||
/* This class is for the output subarea inside the output_area and after
|
||||
the prompt div. */
|
||||
div.output_subarea {
|
||||
overflow-x: auto;
|
||||
padding: 0.4em;
|
||||
/* Old browsers */
|
||||
-webkit-box-flex: 1;
|
||||
|
Loading…
Reference in New Issue
Block a user