Firefox UI에서 더 나은 탭을 얻는 방법(Mac)

3103 단어 firefoxbrowserscss
예, Firefox의 탭은 형편없습니다. 알약(또는 버튼)처럼 보이고 끔찍해 보이죠?

시각적으로 조금 더 보기 좋게 보이도록 스타일을 지정했습니다.




/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에서 어떻게 작동하는지 알려주십시오!

좋은 웹페이지 즐겨찾기