Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

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

Learn More

Swap bookmarks menu with bookmarks 'star' button.

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

more options

There are a lot of answers out there about getting rid of the star button on the new bookmarks menu button, and I share their frustration. However, my complaint is that I don't like the star button being on the left of the dual button. Is there a way to swap the star button and the dropdown menu buttons? To clarify, I want to keep the dual button, but I want the dropdown menu button on the left, and the "Bookmark This Page" star button on the right.

Here is an image to also help clarify what I am looking to move.

http://imgur.com/CfQrJ6o

I appreciate any help you can offer!

There are a lot of answers out there about getting rid of the star button on the new bookmarks menu button, and I share their frustration. However, my complaint is that I don't like the star button being on the left of the dual button. Is there a way to swap the star button and the dropdown menu buttons? To clarify, I want to keep the dual button, but I want the dropdown menu button on the left, and the "Bookmark This Page" star button on the right. Here is an image to also help clarify what I am looking to move. http://imgur.com/CfQrJ6o I appreciate any help you can offer!

글쓴이 JazzSax7 수정일시

선택된 해결법

That is not possible in an easy way. That are not two buttons, but one button and the star is the main button and the other button is the drop marker as you can see if you inspect the code with the DOM Inspector.

That drop marker also has a border or box-shadow on the left, so you would have to make a lot of CSS changes to make this work properly.

Swapping the two is easy with code in userChrome.css:

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

#bookmarks-menu-button > dropmarker {-moz-box-ordinal-group: 0 !important;}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

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

모든 댓글 (3)

more options

선택된 해결법

That is not possible in an easy way. That are not two buttons, but one button and the star is the main button and the other button is the drop marker as you can see if you inspect the code with the DOM Inspector.

That drop marker also has a border or box-shadow on the left, so you would have to make a lot of CSS changes to make this work properly.

Swapping the two is easy with code in userChrome.css:

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

#bookmarks-menu-button > dropmarker {-moz-box-ordinal-group: 0 !important;}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

글쓴이 cor-el 수정일시

more options

Actually, that solved my issue! I use Stylish, and just added it to my current Bookmarks Tweaks style. But that did exactly what I wanted. Thanks so much!

more options

You're welcome

Try to add this rule as well:

#bookmarks-menu-button > dropmarker::before {display:none!important}

I think that it is this rule that is used:

  • chrome://browser/skin/browser.css
:-moz-any(#TabsToolbar, #nav-bar) .toolbarbutton-1:not(:hover):not(:active):not([open]) > .toolbarbutton-menubutton-dropmarker::before {}