Advertisement
Guest User

Firefox 95 show close button on tabs

a guest
Dec 10th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.46 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
  2.  
  3. /* show close button on hover */
  4. #tabbrowser-tabs[closebuttons="activetab"]
  5.  .tabbrowser-tab:not([selected]):not([pinned]):hover .tab-close-button {
  6.   display: -moz-inline-box !important;
  7. }
  8.  
  9. /* make the close button more clearly visible on hover */
  10. .tab-close-button:hover {
  11.     background-color: rgba(255,0,0,.7) !important;
  12.     fill: white !important;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement