Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

Disable/hide history manager details bar

  • 4 réponses
  • 0 a ce problème
  • 45 vues
  • Dernière réponse par Rodrigo Diaz

more options

Hello I want to disable/hide or at leas make smaller the GIANT "detail" bar that shows up on the history manager and difficults reading trough the history. There seems to be no options available in the toolbar and can't find any on about:config either. Perhaps there's a key I can add in about:config to change this?

Thank you
Hello I want to disable/hide or at leas make smaller the GIANT "detail" bar that shows up on the history manager and difficults reading trough the history. There seems to be no options available in the toolbar and can't find any on about:config either. Perhaps there's a key I can add in about:config to change this? Thank you
Captures d’écran jointes

Solution choisie

You can add CSS code to the userChrome.css file in the chrome folder in the Firefox profile folder to hide most of those fields in the detail pane unless you set focus to this area.


@-moz-document url-prefix(chrome://browser/content/places/places.xhtml){
 /* LIBRARY: detailsPane HIDE */
 #detailsPane {height:auto !important; min-height:0px !important}

 /* LIBRARY: detailsPane HIDE not focused */
 #detailsPane:not(:focus-within)
  :is(.editBMPanel_locationRow, #editBMPanel_locationField,
      .editBMPanel_tagsRow, #editBMPanel_tagsField, #editBMPanel_tagsSelectorExpander, #tags-field-info,
      .editBMPanel_keywordRow, #editBMPanel_keywordField, #keyword-field-info) {
   display:none !important;
 }
}

More info about userChrome.css/userContent.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

Lire cette réponse dans son contexte 👍 1

Toutes les réponses (4)

more options

PS: By the way half of that detail bar is a totally blank space... If anybody here works for firefox you could make it way smaller

more options

I think the reason there is excess space is because that panel is also used for bookmarks, and with bookmarks, that lower part is used for a Keywords field.

Mozilla has a product suggestion site at https://connect.mozilla.org/. I think if you have time, it would be a good idea to post this request (some way to minimize the editing panel in the Library window) there to get into the current feedback stream. Use the "Ideas" section of the site.

I don't think there would be a setting in about:config for this, but there is another level of hackery that usually can resize or hide parts of Firefox's user interface. That's an optional, community-supported (i.e., not officially supported) style rules file named userChrome.css. I have a site with general information on what it can do and how to set it up: https://www.userchrome.org/

The trick is to find rules that do exactly what you want without weird side effects. If you would consider going down this road, I or someone else could take a deeper look.

more options

Solution choisie

You can add CSS code to the userChrome.css file in the chrome folder in the Firefox profile folder to hide most of those fields in the detail pane unless you set focus to this area.


@-moz-document url-prefix(chrome://browser/content/places/places.xhtml){
 /* LIBRARY: detailsPane HIDE */
 #detailsPane {height:auto !important; min-height:0px !important}

 /* LIBRARY: detailsPane HIDE not focused */
 #detailsPane:not(:focus-within)
  :is(.editBMPanel_locationRow, #editBMPanel_locationField,
      .editBMPanel_tagsRow, #editBMPanel_tagsField, #editBMPanel_tagsSelectorExpander, #tags-field-info,
      .editBMPanel_keywordRow, #editBMPanel_keywordField, #keyword-field-info) {
   display:none !important;
 }
}

More info about userChrome.css/userContent.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

more options

cor-el said

You can add CSS code to the userChrome.css file in the chrome folder

thank you a lot! i always wanted to know how to edit .css. this worked well. I wonder if there is a "bookmark bar autohide" option like "toolbar autohide" in windows

Modifié le par Rodrigo Diaz