Hello,
As there is a linux survival guide on this forum, I wondered why not create a Firefox survival guide to share lots of practical tips?
Improve the speed of the scroll, the harder we scroll, the faster we go:
mousewheel.acceleration.factor = 20
mousewheel.acceleration.start = 1
Switch tabs using the mouse wheel:
toolkit.tabbox.switchByScrolling = true
Have the find bar centered below the favorites bar using the userChrome .css:
source
findbar {
-moz-box-ordinal-group: 0;
position: relative;
margin-top: -4px !important;
margin-bottom: calc(0px - 2 * var(--toolbarbutton-inner-padding) - 20px);
border-top: none !important;
transition: transform 82ms linear, opacity 82ms linear 32ms !important;
background: var(--toolbar-bgcolor) !important; /* --lwt-accent-color for contrast */
/* Don't overlap with scrollbar */
/* margin-right: 16px; */
}
findbar .findbar-textbox {
width: 32em !important;
text-align: center !important;
}
findbar[hidden] {
transform: translateY(-30px);
}
findbar > .findbar-container {
-moz-box-direction: reverse;
}
findbar .findbar-button {
-moz-box-ordinal-group: 0;
}
findbar .found-matches {
-moz-box-ordinal-group: 2;
display: -moz-box;
min-width: 200px;
text-align: right !important;
opacity: 0.75 !important;
}
findbar .findbar-find-fast.findbar-find-status {
-moz-box-ordinal-group: 3;
display: none !important;
}
findbar > .findbar-container > hbox {
margin: 0 70px;
}
findbar > .findbar-container::before,
findbar > .findbar-container::after {
content: "";
display: -moz-box;
-moz-box-flex: 1;
-moz-box-ordinal-group: 0
}
findbar > .findbar-container::after {
-moz-box-ordinal-group: 4;
}