# HG changeset patch # User Søren Løvborg # Date 2017-02-16 15:40:04 # Node ID a90acf3a1422e95e6b5a86a42815ec7e25f0e6d9 # Parent f939793f3ceb3c02db0e852691e5a3bc6b4c14b8 css: fix redundant/overly broad rules Remove rule coloring "#content div.panel div.panel-heading .pull-left a" (and ditto .pull-right) white, as it caused the branch filter drop-down box on the changelog page to become white-on-white. I have not found anywhere this rule actually serves a purpose. On several pages, the rules matched our standard grey buttons, but was overruled by an !important style for .btn elements. On repository group pages, it matches the repo group parent path link, and in /_admin/journal, it matches the "Watched Repositories" and "My Repositories" links; but all of these are already white from the "#content div.panel div.panel-heading a" rule. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -577,9 +577,7 @@ div.panel div.panel-heading { } #content div.panel div.panel-heading .pull-left, -#content div.panel div.panel-heading .pull-left a, -#content div.panel div.panel-heading .pull-right, -#content div.panel div.panel-heading .pull-right a { +#content div.panel div.panel-heading .pull-right { color: white; }