Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

How to get rid of bookmark star?

  • 3 ответа
  • 5 имеют эту проблему
  • 3 просмотра
  • Последний ответ от potato123

more options

How to get rid of bookmark star? I tried:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

by creating and putting it in a file "userChrome.css" in "chrome" folder in my profile, but it didn't work.

Is there another way?

How to get rid of bookmark star? I tried: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; } by creating and putting it in a file "userChrome.css" in "chrome" folder in my profile, but it didn't work. Is there another way?

Изменено potato123

Выбранное решение

Nevermind, it turns out I was saving my files as userChrome.css.txt.


The code below does work:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

Прочитайте этот ответ в контексте 👍 0

Все ответы (3)

more options

Hi, check the next (always in userChrome.css)

   #star-button { display: none !important; }

thank you

Изменено ideato

more options

The current version of the bookmarks star on the Navigation Toolbar consists of two buttons, one if the actual star button and the other is the drop marker that opens the drop-down list.

These are the selectors for both:

#nav-bar-customization-target #bookmarks-menu-button .toolbarbutton-menubutton-button
#nav-bar-customization-target #bookmarks-menu-button .toolbarbutton-menubutton-dropmarker
more options

Выбранное решение

Nevermind, it turns out I was saving my files as userChrome.css.txt.


The code below does work:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }