Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.92 KB | None | 0 0
  1. /* Update to show URL in statusbar */
  2. #statuspanel{display: !important;}
  3. #statuspanel[type="overLink"]{display: !important;}
  4. #statuspanel-label {display: !important;}
  5.  
  6. /* change/hide colors */
  7. #statuspanel #statuspanel-label {background-color: transparent !important; border: none !important; color: black !important;}
  8.  
  9. /* changes right click menu order, so search for google is first */
  10. #context-searchselect {order: 0 !important;}
  11. #context-searchselect {-moz-box-ordinal-group: 0 !important;}
  12.  
  13. /* change bookmark folder icon */
  14. .bookmark-item[container=true] {list-style-image: url("folder-item.png") !important;}
  15.  
  16. /* Tighten up drop-down/context/popup menu spacing (8 Sep 2021) */
  17. menupopup:not(.in-menulist) > menuitem,
  18. menupopup:not(.in-menulist) > menu {padding-block: 2px !important; min-height: unset !important;}
  19.  
  20. /* remove extra bookmark spacing */
  21. #PlacesToolbar menuitem {min-height: 2px !important;}
  22.  
  23. /* Added move search selected text to the top of context menu was #context-searchselect {-moz-box-ordinal-group: 0 !important;}  */
  24.  
  25. #context-searchselect {order: -1 !important;}
  26.  
  27. /*** Added 6/17/22 to increase bookmark spacing, tried 2 px 1st ***/
  28. #PlacesToolbar bookmark-item {min-height: 2px !important;}
  29.  
  30. /* Increase font size on bookmarks toolbar - 14 px way too big, 12px too small*/
  31. #PlacesToolbarItems .bookmark-item {font-size: 13px !important; .tabbrowser-tab {padding-top: 1px !important; margin-top:1px !important;}
  32. menupopup > menuitem, menupopup > menu {padding-top: 2px !important; padding-bottom:2px !important;}
  33. *|*:root {--arrowpanel-menuitem-padding: 4px 8px !important;}
  34.  
  35. /* Use Normal top and bottom padding for Compact */
  36. #PlacesToolbarItems .bookmark-item {padding-top: 1px !important; padding-bottom: 1px !important;}
  37.  
  38. /* TABS: height */
  39. :root {
  40.  --tab-toolbar-navbar-overlap: 1px !important; /* fix for full screen mode */
  41.  --tab-min-height: 14px !important;
  42.  --tab-max-height:16px !important; }
  43.  
  44. #TabsToolbar, #tabbrowser-tabs  {--tab-max-height: 16px !important;}
  45.  
  46. /* Tab padding around text */
  47. #TabsToolbar {margin-top: 1px !important; margin-bottom: 1px !important; }
  48.  
  49. /* Bookmark and context menu spacing */
  50. menupopup > menuitem, menupopup > menu {padding-block: 2px !important; min-height: 2px !important;}
  51.  
  52. /* Options menu spacing  was 2px 4px*/
  53. :root {--arrowpanel-menuitem-padding: 1px 1px !important;}
  54.  
  55. /* Disable rounded tabs */
  56. .tab-background{border-radius: 0px 0px !important; margin-bottom: 0px !important; margin-block: 1px 0 !important;}
  57.                                
  58. /* Remove "Share" Context menu on Tab */
  59. #tabContextMenu .share-tab-url-item, {display: none !important;}
  60.  
  61. /* Never show "Share" when right clicking */
  62. #context-share {display: none !important;}
  63.  
  64. /* Never show "Reload Tab" when right clicking */
  65. #context-ReloadTab {display: none !important;}
  66.  
  67. /* Never show "Pin Tab" when right clicking */
  68. #context-pinTab {display: none !important;}
  69.  
  70. /* Never show "Mute Tab" when right clicking */
  71. #tabContextMenu #context_toggleMuteTab, {display: none !important;}
  72.  
  73. /* Hide "Move Tab" on context menu */
  74. #tabContextMenu #context_moveTabOptions, {display: none !important;}
  75.  
  76. /* Never show "Open in New Private Window" when right clicking */
  77. #context-openlinkprivate, {display: none !important;}
  78.                    
  79.  
  80. /* Never show "Make Private Tab" when right clicking */
  81. #placesContext_open\:newprivatewindow, {display: none !important;}
  82.  
  83. /*Removes Items from Tab Context Menu*/
  84. #tabContextMenu #context_reloadTab,{display: none !important;}
  85. #tabContextMenu #context_Share, {display: none !important;}
  86. #tabContextMenu #context_openTabInWindow, {display: none !important;}
  87. #tabContextMenu #context_shareTabURL, {display: none !important;}
  88. #tabContextMenu #context_MuteTab, {display: none !important;}
  89. #tabContextMenu #context_pinTab {display: none !important;}
  90.  
  91. /* Hide "Take Screenshot" on context menu */
  92. #context-take-screenshot,{display: none !important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement