1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:08:37 +01:00

Fix completion.listCompleter.

This commit is contained in:
Kris Maglione
2011-01-04 11:07:37 -05:00
parent 80def7bfe9
commit 3350f3d4bf
2 changed files with 4 additions and 2 deletions

View File

@@ -18,11 +18,13 @@ var StatusLine = Module("statusline", {
if (this.statusBar.localName == "toolbar") {
styles.system.add("addon-bar", config.styleableChrome, <css><![CDATA[
#status-bar { margin-top: 0 !important; }
#addon-bar { padding: 0 !important; min-height: 18px !important; -moz-appearance: none !important; }
#addon-bar > statusbar { -moz-box-flex: 1 }
#addon-bar > #addonbar-closebutton { visibility: collapse; }
#addon-bar > xul|toolbarspring { visibility: collapse; }
]]></css>);
highlight.loadCSS(<![CDATA[
!AddonBar;#addon-bar padding: 0 !important; min-height: 18px !important; -moz-appearance: none !important;
]]>);
}
let _commandline = "if (window.dactyl) return dactyl.modules.commandline";