From c0dd87665a0d4b810d07fb00905e17d02e6d19cb Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 19 Mar 2012 17:01:52 -0600 Subject: [PATCH] Add a border and subtle inset shadow when panes are split. --- static/atom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/atom.css b/static/atom.css index 74cc34d3b..8b067b579 100644 --- a/static/atom.css +++ b/static/atom.css @@ -34,5 +34,14 @@ body { position: absolute; width: 100%; height: 100%; + box-sizing: border-box; + -webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .1); } +.row > * + * { + border-left: 5px solid #515151; +} + +.column > * + * { + border-top: 5px solid #515151; +}