From ced66d920df6814ace2013ca02c36e0e9650d856 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 7 Jan 2015 10:21:52 -0700 Subject: [PATCH] Remove .pane-item selector from core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s still in some themes, but we should be able to use a structural selector to style anything in the pane so people don’t have to add this class. --- static/panes.less | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/static/panes.less b/static/panes.less index cb8bb6565..09e9663ec 100644 --- a/static/panes.less +++ b/static/panes.less @@ -33,17 +33,14 @@ atom-pane-container { min-width: 0; position: relative; - .pane-item { - color: @text-color; - background-color: @pane-item-background-color; - } - > *, > atom-text-editor.react > * { position: absolute; top: 0; right: 0; bottom: 0; left: 0; + color: @text-color; + background-color: @pane-item-background-color; } } }