답변:
"userChrome.css"파일과 상위 디렉토리 "chrome"이 없으면 작성하십시오.
~/.mozilla/firefox/<YOUR_FIREFOX_PROFILE>/chrome/userChrome.css
userChrome.css에 다음 코드
를 배치하십시오. @namespace로 시작하는 행이 이미 userChrome.css에 있으면 두 번째로 추가하지 마십시오.
#TabsToolbar {
direction: rtl;
}
#tabbrowser-tabs {
direction: ltr;
}
.titlebar-buttonbox {
display: flex;
}
.titlebar-min {
order: 2;
}
.titlebar-max {
order: 1;
}
.titlebar-close {
order: 3;
margin-right: 6px !important;
}
이제 Firefox를 다시 시작하면 버튼이 왼쪽에 나타납니다.
Firefox 프로필은 다음과 같습니다 : hej3q2i1.default
자신의 프로필이 확실하지 않은 경우 다음 단계에 따라 찾을 수 있습니다.
CSS 소스 : https://gist.github.com/oidualc/9f7c0a6591ada0d391ee6813a518dc3b
@denshigomi의 답변 외에도 오정렬에 대한 교황을 추가했습니다. 이것은 Apoorv Potnis의 문제를 해결 합니다. 이 특성을 userChrome.css 파일에 추가 할 수 있습니다.
#titlebar-close {
margin-right: 6px !important;
}
또한 요지는 여기 에서 찾을 수 있습니다 .
의 원래 저자의 요점 여기. 최신 버전의 Firefox Nightly에서 버튼 순서가 반전되어 스크립트가 업데이트되었습니다.
userChrome.css :
#TabsToolbar {
direction: rtl;
}
#tabbrowser-tabs {
direction: ltr;
}
.titlebar-buttonbox {
display: flex;
}
.titlebar-min {
order: 2;
}
.titlebar-max {
order: 1;
}
.titlebar-close {
order: 3;
margin-right: 6px !important;
}
자세한 내용은 https://www.userchrome.org/를 참조 하십시오.
이것은 Firefox 65 업데이트 후에 저에게 효과적입니다.
(userChrome.css)
#menubar-items {
-moz-box-ordinal-group: 2;
margin-left: 30px;
}
.titlebar-buttonbox-container {
-moz-box-ordinal-group: 1!important;
}
.titlebar-button.titlebar-close {
-moz-box-ordinal-group: 1;
}
.titlebar-button.titlebar-min {
-moz-box-ordinal-group: 2;
}
.titlebar-button.titlebar-max {
-moz-box-ordinal-group: 3;
}
Firefox 65 용 Gnome에서이 userChrome이 가장 적합합니다.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#TabsToolbar .toolbar-items {
-moz-box-ordinal-group: 2;
}
#TabsToolbar-customization-target .titlebar-spacer[type="pre-tabs"] {
display: none;
}
#TabsToolbar-customization-target .titlebar-spacer[type="post-tabs"] {
width: 4px !important;
}
.titlebar-buttonbox-container {
-moz-box-ordinal-group: 1 !important;
}
.titlebar-buttonbox-container toolbarbutton.titlebar-button.titlebar-close {
margin-left: 4px !important;
}
도와 주셔서 감사합니다!
조금 바꿔야했지만 지금은 완벽합니다!
이것은 내 'userChrome.css'파일입니다.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#titlebar-max {
-moz-box-ordinal-group: 0;
}
#titlebar-content {
direction: rtl;
}
#TabsToolbar {
direction: rtl;
}
#tabbrowser-tabs {
direction: ltr;
}
.tabbrowser-tab:not([pinned="true"]):hover .tab-close-button:not([selected="true"]) {
display: -moz-box !important;
}
#menubar-items {
-moz-box-ordinal-group: 2;
margin-left: 30px;
}
.titlebar-buttonbox-container {
-moz-box-ordinal-group: 1!important;
}
.titlebar-button.titlebar-close {
-moz-box-ordinal-group: 3;
margin-left: 5px !important;
margin-right: 6px !important;
}
.titlebar-button.titlebar-min {
-moz-box-ordinal-group: 2;
}
.titlebar-button.titlebar-max {
-moz-box-ordinal-group: 1;
}