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