From 8e7fb55f75d50ed448471ee066b6797ce8498394 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Mon, 21 Jan 2013 21:12:41 -0800 Subject: [PATCH] refactoring the status-bar --- .atom/themes/Atom - Dark/status-bar.css | 7 ------- .atom/themes/Atom - Light/status-bar.css | 13 +++---------- src/packages/status-bar/stylesheets/status-bar.css | 9 +++++++++ 3 files changed, 12 insertions(+), 17 deletions(-) create mode 100644 src/packages/status-bar/stylesheets/status-bar.css diff --git a/.atom/themes/Atom - Dark/status-bar.css b/.atom/themes/Atom - Dark/status-bar.css index e15105d5e..f517760f4 100644 --- a/.atom/themes/Atom - Dark/status-bar.css +++ b/.atom/themes/Atom - Dark/status-bar.css @@ -5,9 +5,6 @@ font-size: 11px; line-height: 14px; color: #969696; - position: relative; - -webkit-user-select: none; - cursor: default; } .status-bar .cursor-position, @@ -19,10 +16,6 @@ cursor: pointer; } -.status-bar .git-branch { - float: right; -} - .status-bar .branch-label { vertical-align: baseline; } diff --git a/.atom/themes/Atom - Light/status-bar.css b/.atom/themes/Atom - Light/status-bar.css index e15105d5e..88995cd78 100644 --- a/.atom/themes/Atom - Light/status-bar.css +++ b/.atom/themes/Atom - Light/status-bar.css @@ -1,13 +1,10 @@ .status-bar { - background-color: #303030; - border-top: 1px solid #454545; + background-color: #e5e5e5; + border-top: 1px solid #959595; padding: 4px 10px 3px; font-size: 11px; line-height: 14px; - color: #969696; - position: relative; - -webkit-user-select: none; - cursor: default; + color: #333; } .status-bar .cursor-position, @@ -19,10 +16,6 @@ cursor: pointer; } -.status-bar .git-branch { - float: right; -} - .status-bar .branch-label { vertical-align: baseline; } diff --git a/src/packages/status-bar/stylesheets/status-bar.css b/src/packages/status-bar/stylesheets/status-bar.css new file mode 100644 index 000000000..3fe635f49 --- /dev/null +++ b/src/packages/status-bar/stylesheets/status-bar.css @@ -0,0 +1,9 @@ +.status-bar { + position: relative; + -webkit-user-select: none; + cursor: default; +} + +.status-bar .git-branch { + float: right; +} \ No newline at end of file