Changeset - a083ed3a5032
[Not reviewed]
default
0 1 0
Søren Løvborg - 9 years ago 2017-02-28 17:04:10
sorenl@unity3d.com
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.
1 file changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -504,13 +504,13 @@ nav.navbar #quick .repo_switcher_type {
 

	
 
#content #right {
 
    margin: 0 60px 10px 290px;
 
}
 

	
 
#content nav.navbar,
 
#main > div.panel {
 
div.panel-primary {
 
    clear: both;
 
    background: #fff;
 
    margin: 0 0 10px;
 
    padding: 0 0 10px;
 
    border-radius: 4px 4px 4px 4px;
 
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
 
@@ -3109,12 +3109,16 @@ nav.navbar #quick li .dropdown-menu,
 

	
 
.caret:after {
 
    font-family: 'kallithea';
 
    content: ' \23f7';           /* triangle-down */
 
}
 

	
 
.select2-choice {
 
    color: black !important;
 
}
 

	
 
.branch-switcher .select2-choice,
 
.repo-switcher .select2-choice {
 
    padding: 0px 8px 1px !important;
 
    display: block;
 
    height: 100%;
 
}
0 comments (0 inline, 0 general)