Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

allow zero length book mark names

  • 3 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Mrdrew

more options

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.
Đính kèm ảnh chụp màn hình

Giải pháp được chọn

That would be this code in userChrome.css.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (3)

more options

With the correct userChrome.css it is possible to hide that "Open All in Tabs" line, and that should allow that field to collapse.

This package for userChrome.css has all the codes, just a matter of reviewing each .css file to find the correct one to use. https://github.com/stonecrusher/simpleMenuWizard

more options

Giải pháp được chọn

That would be this code in userChrome.css.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
more options

Thank you. I also had to refer to this site for the rest of the setup https://www.userchrome.org/how-create-userchrome-css.html