changeset 6504:a90acf3a1422

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.
author Søren Løvborg <sorenl@unity3d.com>
date Thu, 16 Feb 2017 15:40:04 +0100
parents f939793f3ceb
children 56bce741176f
files kallithea/public/css/style.css
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Mon Feb 27 00:27:31 2017 +0100
+++ b/kallithea/public/css/style.css	Thu Feb 16 15:40:04 2017 +0100
@@ -577,9 +577,7 @@
 }
 
 #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;
 }