# HG changeset patch # User Søren Løvborg # Date 2017-02-28 17:04:10 # Node ID a083ed3a50324b6499c7463fefe4c4236e63a8be # Parent a7271dbefd96b8f3dc09ddb555100a436e534958 css: additional fixes The fix in 56bce741176f was incorrect, as it robbed the login dialog of its panel styling. Using on .panel-primary instead of #main solves this. Additionally, while the rules deleted in a90acf3a1422 were indeed unused, it didn't actually solve the problem of select2 dropdowns being white on white, due to a separate selector also causing this effect. This should be fixed now. 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 @@ -507,7 +507,7 @@ nav.navbar #quick .repo_switcher_type { } #content nav.navbar, -#main > div.panel { +div.panel-primary { clear: both; background: #fff; margin: 0 0 10px; @@ -3112,6 +3112,10 @@ nav.navbar #quick li .dropdown-menu, content: ' \23f7'; /* triangle-down */ } +.select2-choice { + color: black !important; +} + .branch-switcher .select2-choice, .repo-switcher .select2-choice { padding: 0px 8px 1px !important;