如何在Firefox快速查找栏中交换“下一个”和“上一个”按钮


0

我在* nix系统上100%使用Firefox。现在我需要坚持使用Windows环境和Firefox,其中有Next和Previous按钮交换:

感觉真的很不舒服。与GTK版本相比:

在about:config或附加组件中是否有一些选项可以改变这些按钮的顺序?

Answers:


2

您可以使用F3Ctrl+ G用于下一个,Shift+ F3Ctrl+ Shift+ G用于以前,更快,无需关心按钮顺序


我更喜欢使用鼠标,所以热键不是我寻找的解决方案。
svlasov 2013年

0

弄清楚自己。幸运的是,Firefox仍然可以通过CSS进行高度自定义。所以我创建了一个完成工作的用户风格。您也可以更改其他元素的顺序。

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#FindToolbar .findbar-closebutton {
   -moz-box-ordinal-group:0!important;
}

#FindToolbar label {
    -moz-box-ordinal-group:0!important;
}

#FindToolbar textbox.findbar-textbox {
    -moz-box-ordinal-group:1!important
}

#FindToolbar toolbarbutton.findbar-find-previous,
#FindToolbar toolbarbutton.findbar-find-previous label {
    -moz-box-ordinal-group:3!important
}

#FindToolbar toolbarbutton.findbar-find-next,
#FindToolbar toolbarbutton.findbar-find-next label {
    -moz-box-ordinal-group:4!important
}

#FindToolbar toolbarbutton.findbar-highlight,
#FindToolbar toolbarbutton.findbar-highlight label {
    -moz-box-ordinal-group:5!important;
}

#FindToolbar checkbox {
    -moz-box-ordinal-group:6!important;
}

.findbar  - 查找 -  fast.findbar找到的状态,
.findbar-find-fast.find-status-icon {
   -moz-box-ordinal-group:7!important;

}

看起来OSX遇到了同样的问题,因此Mac用户有一个单独的版本

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.