Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

bookmarks not opening with left click

  • 3 답장
  • 2 이 문제를 만남
  • 13 보기
  • 최종 답변자: cor-el

more options

FF version 57.0 was installed automatically when I started Firefox. As usual some of my settings have ended up in the toilet. I have fixed on but have 2 others I don't have a fix for. 1. "Open Bookmark in new tab with left click". 2. "Bookmark Colors are gone".

  • Is there a fix for these 2 items since we now have the improved version of Firefox?

Thank you in Advance

FF version 57.0 was installed automatically when I started Firefox. As usual some of my settings have ended up in the toilet. I have fixed on but have 2 others I don't have a fix for. 1. "Open Bookmark in new tab with left click". 2. "Bookmark Colors are gone". * Is there a fix for these 2 items since we now have the improved version of Firefox? Thank you in Advance

선택된 해결법

There is a pref on the about:config page for opening a bookmark in a new tab:

  • browser.tabs.loadBookmarksInTabs = true

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


Note that the above posted CSS code would go in userChrome.css.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (3)

more options

hello mack,

follow the instructions and steps :

Note that the code Moses posted above doesn't include a selector for the Bookmarks menu drop-down list (#bookmarksMenuPopup .bookmark-item)

/* Colored folders for bookmark sidebar, toolbar, menu button */

/* Standard folder */
#bookmarks-view treechildren::-moz-tree-image(container),
#PlacesToolbarItems toolbarbutton[container="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"] .menu-iconic-icon {
 fill: #e8bb00 !important; /* slightly muted gold */
}
/* Live Bookmark (RSS Feed) */
#bookmarks-view treechildren::-moz-tree-image(container, livemark),
#PlacesToolbarItems toolbarbutton[container="true"][livemark="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"][livemark="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"][livemark="true"] .menu-iconic-icon {
  fill: orange !important;
}
/* Smart bookmark folder */
#bookmarks-view treechildren::-moz-tree-image(container, query),
#PlacesToolbarItems toolbarbutton[container="true"][query="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"][query="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"][query="true"] .menu-iconic-icon {
  fill: #69c !important; /* similar to blue smart folder color */
}

/* These "containers" are SVG in the sidebar, not yet on the menu */

#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksMenu) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks) {
 fill: olive !important;

}


i hope resolved your problem then reply back to me.

Thank you!

Regards,

Arman khan.

more options

hello,

The file type of userChrome.css is correct, so that shouldn't be a problem.

Note that the code Moses posted above doesn't include a selector for the Bookmarks menu drop-down list (#bookmarksMenuPopup .bookmark-item)

/* Colored folders for bookmark sidebar, toolbar, menu button */

/* Standard folder */
#bookmarks-view treechildren::-moz-tree-image(container),
#PlacesToolbarItems toolbarbutton[container="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"] .menu-iconic-icon {
 fill: #e8bb00 !important; /* slightly muted gold */
}
/* Live Bookmark (RSS Feed) */
#bookmarks-view treechildren::-moz-tree-image(container, livemark),
#PlacesToolbarItems toolbarbutton[container="true"][livemark="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"][livemark="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"][livemark="true"] .menu-iconic-icon {
  fill: orange !important;
}
/* Smart bookmark folder */
#bookmarks-view treechildren::-moz-tree-image(container, query),
#PlacesToolbarItems toolbarbutton[container="true"][query="true"] .toolbarbutton-icon,
#BMB_bookmarksPopup menu[container="true"][query="true"] .menu-iconic-icon,
#bookmarksMenuPopup .bookmark-item[container="true"][query="true"] .menu-iconic-icon {
  fill: #69c !important; /* similar to blue smart folder color */
}

/* These "containers" are SVG in the sidebar, not yet on the menu */

#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksMenu) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks) {
 fill: olive !important;
more options

선택된 해결법

There is a pref on the about:config page for opening a bookmark in a new tab:

  • browser.tabs.loadBookmarksInTabs = true

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


Note that the above posted CSS code would go in userChrome.css.