mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-15 04:00:34 +08:00
Hide vertical scrollbar on rendered content by default.
This commit is contained in:
parent
dc3dae96b6
commit
9380a22b76
@ -37,6 +37,11 @@ h1,h2,h3,h4,h5,h6 {
|
||||
|
||||
.text_cell.rendered .rendered_html {
|
||||
overflow-x: auto;
|
||||
|
||||
// Content in the y direction should cause the rendered content to grow,
|
||||
// the overflow-x: auto causes chrome to assume the same of y, so we need
|
||||
// to tell it explicitly otherwise.
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.text_cell.unrendered .text_cell_render {
|
||||
|
Loading…
Reference in New Issue
Block a user