# HG changeset patch # User Sean Farley # Date 2014-07-15 05:34:16 # Node ID 4ce5017e394c8998c27a058134644a8df7efabf4 # Parent 7a44d920a038007deaea58d5df5d93e7104e22da contextbar: prepend width and height from icon css classes with 'min-' This caused the new font icons to be pushed down too far. diff --git a/kallithea/public/css/contextbar.css b/kallithea/public/css/contextbar.css --- a/kallithea/public/css/contextbar.css +++ b/kallithea/public/css/contextbar.css @@ -61,10 +61,11 @@ 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 {