Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

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

자세히 살펴보기

이 쓰레드는 잠기고 보존되었습니다. 만약 도움이 필요하시면 새로운 질문을 올려주세요.

Need help removing transparent overlay from menu and bookmarks bars

  • 5 답장
  • 13 이 문제를 만남
  • 3 보기
  • 최종 답변자: alanroig

more options

Same problem as: https://support.mozilla.org/en-US/questions/1114202

I had been using the stylish fix since that update, but the most recent update must have changed something related to that on firefox's side, as that fix no longer works. I don't care if it's with stylish or not, I just want to be able to see my themes without some semi-transparent crap all over it.

Same problem as: https://support.mozilla.org/en-US/questions/1114202 I had been using the stylish fix since that update, but the most recent update must have changed something related to that on firefox's side, as that fix no longer works. I don't care if it's with stylish or not, I just want to be able to see my themes without some semi-transparent crap all over it.

선택된 해결법

Now that Stylish can't do anything with the user interface, you will need to paste your modifications into a userChrome.css file. If you have never created one before, I posted a website with info: https://www.userchrome.org/

The old rule doesn't seem to work...

I created a rule for someone the other day who was using a black theme:

/* Mostly transparent on dark theme */
  /* More subtle background color on selected tab */
#main-window[lwthemetextcolor="bright"] #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background[selected=true]:-moz-lwtheme {
  background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.2) 80%, transparent) !important;
}
  /* No top line on selected tab */
#main-window[lwthemetextcolor="bright"] .tabbrowser-tab[selected="true"] .tab-line {
  display: none !important;
}
  /* Transparent toolbars */
#main-window[lwthemetextcolor="bright"] #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar) {
  background-color: transparent !important;
  background-image: none !important;
}
  /* Hide tab close buttons until hovered */
.tabbrowser-tab:not([pinned="true"]):not(:hover) .tab-close-button {
  display: none !important;
}

The effect is illustrated in the attached. Depending on what's behind it, the black border line can be distracting. Also, the address bar area maybe is brighter than needed. What kinds of improvements would make sense for your theme?

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

모든 댓글 (5)

more options

선택된 해결법

Now that Stylish can't do anything with the user interface, you will need to paste your modifications into a userChrome.css file. If you have never created one before, I posted a website with info: https://www.userchrome.org/

The old rule doesn't seem to work...

I created a rule for someone the other day who was using a black theme:

/* Mostly transparent on dark theme */
  /* More subtle background color on selected tab */
#main-window[lwthemetextcolor="bright"] #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background[selected=true]:-moz-lwtheme {
  background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.2) 80%, transparent) !important;
}
  /* No top line on selected tab */
#main-window[lwthemetextcolor="bright"] .tabbrowser-tab[selected="true"] .tab-line {
  display: none !important;
}
  /* Transparent toolbars */
#main-window[lwthemetextcolor="bright"] #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar) {
  background-color: transparent !important;
  background-image: none !important;
}
  /* Hide tab close buttons until hovered */
.tabbrowser-tab:not([pinned="true"]):not(:hover) .tab-close-button {
  display: none !important;
}

The effect is illustrated in the attached. Depending on what's behind it, the black border line can be distracting. Also, the address bar area maybe is brighter than needed. What kinds of improvements would make sense for your theme?

more options

Other than the black line that it leaves behind, that completely gets rid of the grey overlay, so that's really the only improvement I could say would be needed. Thank you for your support

more options

I can't figure out what that line is. I vaguely recall there's a box shadow somewhere, but I can't track it down. Hopefully I'll find it somewhere by accident and can report back.

more options

jscher2000 said

Now that Stylish can't do anything with the user interface, you will need to paste your modifications into a userChrome.css file. If you have never created one before, I posted a website with info: https://www.userchrome.org/ The old rule doesn't seem to work... I created a rule for someone the other day who was using a black theme:
/* Mostly transparent on dark theme */
  /* More subtle background color on selected tab */
#main-window[lwthemetextcolor="bright"] #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background[selected=true]:-moz-lwtheme {
  background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.2) 80%, transparent) !important;
}
  /* No top line on selected tab */
#main-window[lwthemetextcolor="bright"] .tabbrowser-tab[selected="true"] .tab-line {
  display: none !important;
}
  /* Transparent toolbars */
#main-window[lwthemetextcolor="bright"] #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar) {
  background-color: transparent !important;
  background-image: none !important;
}
  /* Hide tab close buttons until hovered */
.tabbrowser-tab:not([pinned="true"]):not(:hover) .tab-close-button {
  display: none !important;
}

The effect is illustrated in the attached. Depending on what's behind it, the black border line can be distracting. Also, the address bar area maybe is brighter than needed. What kinds of improvements would make sense for your theme?

Thank you jscher2000 I found it ridiculous that the default dark theme provided didn't have the annoying overlay yet they decided everything else required it. Ever since I decided to finally try Quantum it's like they are doing everything in their power to make me just want to stick to an older version.

more options

The stupid dev who made all these idiotic changes in Firefox and eliminated most of good customize options, should go to jail. Only for making tabs on top should be punished. Everybody using Firefox wants to have logically tabs NOT on top. Classic Theme Restorer was everything that some stupid developers took from us but doesn't work in Quantum.

글쓴이 alanroig 수정일시