From 579ccbde0fdada9ff9f2ec9c18d9aaedd4854573 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 10 Sep 2013 11:17:45 -0700 Subject: [PATCH] Move sortable styles into the theme --- themes/atom-dark-ui/lists.less | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/themes/atom-dark-ui/lists.less b/themes/atom-dark-ui/lists.less index e546093eb..7075d1e5c 100644 --- a/themes/atom-dark-ui/lists.less +++ b/themes/atom-dark-ui/lists.less @@ -100,3 +100,26 @@ padding-left: @component-padding/2; } } + +.ui-sortable { + li { + line-height: 2.5; + } + + // For sortable lists in the settings view + li.ui-sortable-placeholder { + visibility: visible !important; + background-color: darken(@pane-item-background-color, 3%); + } +} + +li.ui-sortable-helper { + line-height: 2.5; + border: 0; + border-radius: 0; + list-style: none; + box-sizing: content-box; + padding: 0 @component-padding; + background: @background-color-highlight; + box-shadow: 0 0 1px @base-border-color; +}