From f310797b96a976691f29b33166c48d7ffe82e602 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Wed, 11 Sep 2013 15:51:18 -0700 Subject: [PATCH] Style the bootstrap tabs --- themes/atom-dark-ui/tabs.less | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/themes/atom-dark-ui/tabs.less b/themes/atom-dark-ui/tabs.less index ada341ed0..7bb08acee 100644 --- a/themes/atom-dark-ui/tabs.less +++ b/themes/atom-dark-ui/tabs.less @@ -1,4 +1,5 @@ @import "ui-variables"; +@import "ui-mixins"; .tab-bar { height: @tab-height + 6px; @@ -41,3 +42,24 @@ .tab.active:hover .close-icon { color: @text-color-highlight; } + +// Bootstrap nav tabs. +.nav.nav-tabs { + border-bottom-color: @tab-background-color-active; + + > li { + margin-bottom: 0px; + } + + > li > a { + border: none; + } + + > li.active > a { + .text(highlight); + border: none; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + background-color: @background-color-highlight; + } +}