Advertisement
Guest User

Untitled

a guest
May 28th, 2025
59
0
350 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.98 KB | None | 0 0
  1. /* Tabs on bottom */
  2. /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css */
  3. @import url(tabs_on_bottom.css);
  4.  
  5. /* Menubara on top with tabs on bottom */
  6. /* 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 */
  7. @import url(tabs_on_bottom_menubar_on_top_patch.css);
  8.  
  9. /* 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 */
  10. /* 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 */
  11. @import url(hide_urlbar_first_row.css);
  12.  
  13. /* QOL things */
  14. /* Hide useless right click menus*/
  15. #context-pocket,
  16. #context-sendimage,
  17. #context-setDesktopBackground
  18. {display: none !important;}
  19.  
  20.  
  21. /* ---- Tab styling */
  22.  
  23. /* Do not display close button in tabs */
  24. #tabbrowser-tabs .tabbrowser-tab .tab-close-button {
  25. display:none !important;
  26. }
  27.  
  28. /* Remove extra padding between tabs */
  29. .tabbrowser-tab {
  30.   padding-left: 0 !important;
  31. }
  32.  
  33. /* Outline inactive tabs */
  34. .tab-background:not([selected=true]):not([multiselected=true]) {
  35.   border: 1px solid rgba(0, 0, 0, .10) !important;
  36. }
  37.  
  38. /* ---- colors */
  39.  
  40. /*top menubar background color*/
  41. #toolbar-menubar{
  42.   -moz-appearance: none !important;
  43.   background-color: AccentColor !important;
  44. }
  45. #toolbar-menubar:-moz-window-inactive{
  46.   -moz-appearance: none !important;
  47.   background-color: white !important;
  48. }
  49.  
  50. /* top menubar text and button color */
  51. .menubar-text, .titlebar-buttonbox{
  52.  color: AccentColorText !important;
  53. }
  54. .menubar-text:-moz-window-inactive, .titlebar-buttonbox:-moz-window-inactive{
  55.  color: black !important;
  56. }
  57.  
  58. /*Tab and navigation toolbat background color*/
  59. #TabsToolbar, #nav-bar{
  60.   -moz-appearance: none !important;
  61.   background-color: #dbeaf9 !important;
  62.   /* background-image: linear-gradient(#dbeaf9,#dbeaf9) !important; */
  63. }
  64.  
  65. /* White url and search bars when inactive */
  66. #urlbar-background, #searchbar{
  67.     background: white !important;
  68. }
  69.  
  70.  
  71. /* ---- URL bar things */
  72.  
  73. /* Empty tab url bar expand remove*/
  74. #urlbar-background,
  75. #urlbar-container,
  76. .urlbar-input-box {
  77. border: none !important;
  78. }
  79.  
  80. /* ---- URL bar result scrolling */
  81.  
  82. /* Remove useless text from url bar search dropdown */
  83. #urlbar .search-one-offs .search-panel-header {
  84.   display: none !important;
  85. }
  86.  
  87. /* Set max-height for items visible without scrolling */
  88.   #urlbarView-results, #urlbar-results {
  89.     height: unset !important;
  90.     max-height: calc(30.5px * 10) !important;
  91. }
  92.  
  93. /* Ability to scroll in Fx57 */
  94.   #PopupAutoCompleteRichResult .autocomplete-richlistbox > scrollbox,
  95.   #urlbarView-results, #urlbar-results {
  96.     overflow-y: auto !important;
  97.     padding-right: 3px !important;
  98. }
  99.  
  100.  
  101. /* Hide "all tabs" */
  102. #alltabs-button { display: none !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement