question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Disable scrolling of Output widget

See original GitHub issue

I’m using the Output widget to display lengthy content. At some point the auto-scrolling of the output-area kicks in. It would be great if there were a simple way to disable scrolling e.g. Output(scroll=False)

Issue Analytics

  • State:open
  • Created 6 years ago
  • Reactions:4
  • Comments:13 (3 by maintainers)

github_iconTop GitHub Comments

9reactions
sitnarfcommented, Jan 25, 2020

I edited @evanreichard snippet to disable scrolling only for all output widgets:

style = """
    <style>
       .jupyter-widgets-output-area .output_scroll {
            height: unset !important;
            border-radius: unset !important;
            -webkit-box-shadow: unset !important;
            box-shadow: unset !important;
        }
        .jupyter-widgets-output-area  {
            height: auto !important;
        }
    </style>
    """
display(HTML(style))
3reactions
beasteerscommented, May 21, 2019

Any headway on this issue?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Vertically Layout widgets with scrolling - Google Groups
I'm trying to create a simple scrolling region that allows me to load multiple Checkbox widgets with a readable layout.
Read more >
How to prevent (scrollable) sub-window in Jupyter notebooks?
I'd like to print everything right into the notebook, not into a scrollable sub-frame, as this really messes up legibility of my notebooks....
Read more >
Python - Tkinter Scrollbar - Tutorialspoint
Normally, you can tab the focus through a scrollbar widget. Set takefocus=0 if you don't want this behavior. 15. troughcolor. The color of...
Read more >
Support auto-scroll with text outputs (similar to how it works in ...
DS-3831 Option to disable automatic output scrolling ... Currently, when the output of a cell goes past the end of the output window...
Read more >
Layout and Styling of Jupyter widgets - Read the Docs
... interactive widgets to build rich and reactive widget-based applications. ... Layout(overflow='scroll hidden', border='3px solid black', width='500px', ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found