From 5d1bde62a63a9afc0615e00a54bd5e56d5a86506 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 16 Mar 2012 05:49:03 -0600 Subject: [PATCH] Ensure gutter drop-shadow always extends to bottom of window, even if file is shorter. This is fragile. Had to apply a min-height of 100% to horizontal scroller. If I apply it to gutter it causes rendering artifacts. I think we're on the edge of the flexbox code here and may even be causing crashes. --- static/editor.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/editor.css b/static/editor.css index 490c1f0ce..393bbf872 100644 --- a/static/editor.css +++ b/static/editor.css @@ -30,6 +30,7 @@ .editor .horizontal-scroller { overflow-x: auto; width: -webkit-flex(1); + min-height: 100%; } .editor.soft-wrap .horizontal-scroller {