From 2ed20e49800e8c50086ce6db4b47613c3f833fbd Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Thu, 22 Dec 2016 10:34:40 -0700 Subject: [PATCH] Don't use max-width on tables in rendered markdown --- notebook/static/notebook/less/textcell.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/notebook/static/notebook/less/textcell.less b/notebook/static/notebook/less/textcell.less index 3f49e8b24..a683199ce 100644 --- a/notebook/static/notebook/less/textcell.less +++ b/notebook/static/notebook/less/textcell.less @@ -44,6 +44,12 @@ h1,h2,h3,h4,h5,h6 { overflow-y: hidden; } +.text_cell.rendered .rendered_html { + tr, th, td { + max-width: none; + } +} + .text_cell.unrendered .text_cell_render { display:none; }