Hide keyword row in bookmark panel
Hello, I just upgraded to FF 134 and can't hide the keyword row in bookmark panel. This code works, it hides the tags selector and its button: editBMPanel_tagsSelectorEx… (leer más)
Hello,
I just upgraded to FF 134 and can't hide the keyword row in bookmark panel.
This code works, it hides the tags selector and its button:
- editBMPanel_tagsSelectorExpander, #editBMPanel_tagsSelectorRow
{
display:none !important;
}
This works too, it hides the tags and keyword label descriptions:
- tags-field-info, #keyword-field-info
{
display:none !important;
}
But this doesn't hide the keywordRow nor field:
- editBMPanel_keywordRow,
- editBMPanel_keywordField
{
display:none !important;
}
Already checked the items IDs here but seems nothing changed: https://searchfox.org/mozilla-release/source/browser/components/places/content/editBookmarkPanel.inc.xhtml
Any help is welcome.