jupyter-sphinx icon indicating copy to clipboard operation
jupyter-sphinx copied to clipboard

pandas table overflow

Open chenboshuo opened this issue 3 years ago • 2 comments

when I show tables use this extension, the columns overfolw: image

In jupyter, the output is image We see it was handled by ba scrollbar.

Could you help me to solve this issue? Thanks you for your attention.

chenboshuo avatar Aug 12 '22 03:08 chenboshuo

Can you please provide a minimal reproducible example (what to put in conf.py and into the document)?

akhmerov avatar Aug 12 '22 08:08 akhmerov

We resolved this issue by adding the following css to our _static/custom.css

div.jupyter_container .output {
  overflow-x: auto;
}

ryandvmartin avatar Sep 09 '22 13:09 ryandvmartin

This issue is usually related to the theme you are using in your documentation. Your solution will be very useful for community members who face the same thing and can't wait for the theme patch.

closing as the problem is not coming from here.

12rambau avatar Dec 05 '23 10:12 12rambau