1

My UserChrome.css file is as follows:

/*@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");*/
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
@namespace html "http://www.w3.org/1999/xhtml";
.bookmark-item{
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important; 
}
toolbarbutton.bookmark-item .toolbarbutton-text{
    display: none !important;
}
toolbarbutton.bookmark-item .toolbarbutton-icon{
    margin-left: 2px !important;
}
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon[label]:not([label=""]) {
    margin-inline-end: 2px !important;
}
toolbarbutton.subviewbutton.subviewbutton-iconic .toolbarbutton-text{
    display: -moz-box !important;
}
/* --- [1] --- */
toolbarbutton.bookmark-item:hover:not(.subviewbutton):not([disabled="true"]):not([open]) .toolbarbutton-text{
    display: -moz-box !important;
}

As of Firefox 113, I can no longer see the title of a bookmark when I hover over it in my bookmark toolbar. I am not alone in this. Has there been a recent change to Firefox or to CSS that has changed the meaning of the above text?

J. Mini
  • 1,868
  • 1
  • 9
  • 38
  • I wasn't sure if Stack Overflow was the right Stack for this. If there's a better one, let me know. – J. Mini May 15 '23 at 12:09

1 Answers1

1

The answer was on that same Reddit site. Change display: -moz-box to display: flex. display: -moz-box no longer works.

J. Mini
  • 1,868
  • 1
  • 9
  • 38