Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Tabs on bottom */
- /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css */
- @import url(tabs_on_bottom.css);
- /* Menubara on top with tabs on bottom */
- /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 */
- @import url(tabs_on_bottom_menubar_on_top_patch.css);
- /* Hides the first item in the urlbar dropdown if it is a "search with" or "visit" or "tab-to-search" item. Does not hide "search in private window item", probably */
- /* Source file https://github.com/MrOtherGuy/firefox-csshacks/blob/master/chrome/hide_urlbar_first_row.css made available under Mozilla Public License v. 2.0 */
- @import url(hide_urlbar_first_row.css);
- /* QOL things */
- /* Hide useless right click menus*/
- #context-pocket,
- #context-sendimage,
- #context-setDesktopBackground
- {display: none !important;}
- /* ---- Tab styling */
- /* Do not display close button in tabs */
- #tabbrowser-tabs .tabbrowser-tab .tab-close-button {
- display:none !important;
- }
- /* Remove extra padding between tabs */
- .tabbrowser-tab {
- padding-left: 0 !important;
- }
- /* Outline inactive tabs */
- .tab-background:not([selected=true]):not([multiselected=true]) {
- border: 1px solid rgba(0, 0, 0, .10) !important;
- }
- /* ---- colors */
- /*top menubar background color*/
- #toolbar-menubar{
- -moz-appearance: none !important;
- background-color: AccentColor !important;
- }
- #toolbar-menubar:-moz-window-inactive{
- -moz-appearance: none !important;
- background-color: white !important;
- }
- /* top menubar text and button color */
- .menubar-text, .titlebar-buttonbox{
- color: AccentColorText !important;
- }
- .menubar-text:-moz-window-inactive, .titlebar-buttonbox:-moz-window-inactive{
- color: black !important;
- }
- /*Tab and navigation toolbat background color*/
- #TabsToolbar, #nav-bar{
- -moz-appearance: none !important;
- background-color: #dbeaf9 !important;
- /* background-image: linear-gradient(#dbeaf9,#dbeaf9) !important; */
- }
- /* White url and search bars when inactive */
- #urlbar-background, #searchbar{
- background: white !important;
- }
- /* ---- URL bar things */
- /* Empty tab url bar expand remove*/
- #urlbar-background,
- #urlbar-container,
- .urlbar-input-box {
- border: none !important;
- }
- /* ---- URL bar result scrolling */
- /* Remove useless text from url bar search dropdown */
- #urlbar .search-one-offs .search-panel-header {
- display: none !important;
- }
- /* Set max-height for items visible without scrolling */
- #urlbarView-results, #urlbar-results {
- height: unset !important;
- max-height: calc(30.5px * 10) !important;
- }
- /* Ability to scroll in Fx57 */
- #PopupAutoCompleteRichResult .autocomplete-richlistbox > scrollbox,
- #urlbarView-results, #urlbar-results {
- overflow-y: auto !important;
- padding-right: 3px !important;
- }
- /* Hide "all tabs" */
- #alltabs-button { display: none !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement