From 3dbb7c2426f65df4fa691797db72368554042818 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 24 Jul 2012 17:23:33 -0600 Subject: [PATCH] Use legacy flexbox to implement vertical tool panels for consistency --- static/atom.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/atom.css b/static/atom.css index 4da5892bc..53872201d 100644 --- a/static/atom.css +++ b/static/atom.css @@ -16,12 +16,12 @@ body { } #root-view #horizontal { - display: -webkit-flexbox; + display: -webkit-box; } #root-view #panes { height: 100%; - width: -webkit-flex(1 0); + -webkit-box-flex: 1; position: relative; }