1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 13:04:12 +01:00

Fix over-sized addon-bar.

This commit is contained in:
Kris Maglione
2010-09-25 17:33:16 -04:00
parent 95be03098a
commit ae6288106a

View File

@@ -21,7 +21,8 @@ const StatusLine = Module("statusline", {
if (this._statusBar.localName == "toolbar") {
styles.addSheet(true, "addon-bar", config.styleableChrome, <css><![CDATA[
#addon-bar { padding: 0 !important; }
#status-bar { margin-top: 0 !important; }
#addon-bar { padding: 0 !important; min-height: 18px !important; }
#addon-bar > statusbar { -moz-box-flex: 1 }
]]></css>);
let parent = this.widgets.status.parentNode;