Changeset - 4ce5017e394c
[Not reviewed]
default
0 1 0
Sean Farley - 11 years ago 2014-07-15 05:34:16
sean.michael.farley@gmail.com
contextbar: prepend width and height from icon css classes with 'min-'

This caused the new font icons to be pushed down too far.
1 file changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/contextbar.css
Show inline comments
 
@@ -58,16 +58,17 @@ i.icon-minus-sign { background-image: ur
 
i.icon-disabled { background-image: url('../images/icons/shading.png');} /* todo: use instead of minus sign */
 

	
 
i[class^='icon-'] {
 
    background-repeat: no-repeat;
 
    background-position: center;
 
    display: inline-block;
 
    width: 16px;
 
    height: 16px;
 
    min-width: 16px;
 
    min-height: 16px;
 
    margin: -2px 0 -4px 0;
 
    /* background-color: red; /* for debugging */
 

	
 
}
 

	
 
#content #context-bar {
 
    position: relative;
 
    overflow: visible;
 
    background-color: #577632;
0 comments (0 inline, 0 general)