From f1b02cab90db4b72eb881af7defd793e996231e0 Mon Sep 17 00:00:00 2001 From: Christoph Burschka Date: Tue, 26 May 2015 23:51:50 +0200 Subject: [PATCH] Fix tab borders in Carbon. The selector was insufficiently specific to override the global rule. --- css/alt/Carbon.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/alt/Carbon.css b/css/alt/Carbon.css index c289ffd..7b7511d 100644 --- a/css/alt/Carbon.css +++ b/css/alt/Carbon.css @@ -13,11 +13,11 @@ body { background: black } body, button, input, select, textarea { color: #ffc } h3, a { color: #fc0 } -.box, button, input, select, textarea.form-field, .ui-tabs-nav li { +.box, button, input, select, textarea.form-field, .ui-tabs .ui-tabs-nav li { background: #212121; border-color: gray; } -.ui-tabs-nav .ui-tabs-active { background: #313131 } +.ui-tabs-nav li.ui-tabs-active { background: #313131 } .ui-tabs-nav .ui-tabs-active a { color: white } .row:nth-child(even) { background: #212121 } .row:nth-child(odd) { background: black }