From 55e91f7860f37ad5898fa5fbf84f882fb200950a Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Tue, 5 Feb 2013 20:19:07 -0800 Subject: [PATCH] adjust color of modified tabs --- static/tabs.css | 5 +++-- themes/atom-dark-ui/tabs.css | 8 ++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/static/tabs.css b/static/tabs.css index b736f84b8..9f7cce2a3 100644 --- a/static/tabs.css +++ b/static/tabs.css @@ -37,6 +37,7 @@ height: 12px; cursor: pointer; position: absolute; + color: rgba(255, 255, 255, 0.5); right: 5px; top: 4px; -webkit-font-smoothing: antialiased; @@ -47,7 +48,7 @@ } .tab .close-icon:hover { - color: white; + color: #fff; } .tab.file-modified .close-icon { @@ -55,7 +56,7 @@ width: 5px; height: 5px; right: 5px; - border: 2px solid #fff; + border: 2px solid #66a6ff; border-radius: 12px; } diff --git a/themes/atom-dark-ui/tabs.css b/themes/atom-dark-ui/tabs.css index 9caff70f8..48749dbaf 100644 --- a/themes/atom-dark-ui/tabs.css +++ b/themes/atom-dark-ui/tabs.css @@ -21,6 +21,10 @@ padding: 5px 10px; } +.tab:hover { + color: #fff; +} + .tab.active { background-image: -webkit-linear-gradient(#43484d, #303337); color: #fff; @@ -31,4 +35,8 @@ inset 1px 0 0 rgba(255, 255, 255, 0.1), inset -1px 0 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.3); +} + +.tab.active:hover .close-icon { + color: #fff; } \ No newline at end of file