Firefox UI에서 더 나은 탭을 얻는 방법(Mac)
시각적으로 조금 더 보기 좋게 보이도록 스타일을 지정했습니다.
/Users/<username>/Library/Application Support/Firefox/Profiles/<your profile>/chrome/userChrome.css
를 편집하고 다음을 추가합니다.이 파일이 어디에 있는지 알아야 합니다. 그렇지 않으면 Google에서 검색하고 여기로 다시 오세요.
.tab-background {
border-radius: 0 0 3px 3px !important;
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
margin-right: 0 !important;
margin-left: 0 !important;
margin-bottom: 0 !important;
margin-top: 0 !important;
}
.tabbrowser-tab:not( [selected=true] ):not( [multiselected=true] ) .tab-background {
background-color: color-mix( in srgb, currentColor 10%, transparent);
}
this theme을 사용하고 있는데 다른 테마에서는 어떻게 보이는지 궁금합니다.
또한 이것이 Windowz에서 어떻게 작동하는지 알려주십시오!
Reference
이 문제에 관하여(Firefox UI에서 더 나은 탭을 얻는 방법(Mac)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aubreypwd/how-to-get-better-tabs-in-firefox-ui-on-mac-3pk7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)