Mozilla 도움말 검색

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

자세히 살펴보기

Change color of menu pop ups

more options

Hi,

I have a red theme (Red Fade) which I like.

However the menus when you click anything on the menu bar (File, Edit etc) remain the default colour (see screenshot attached). I would like these to be red also. Is it possible to change this background colour preferably using the userChrome.css file or alternatively an add-on? I know how to edit the userChrome file, so would like the code if possible please.

Thanks in advance, Paul.

Hi, I have a red theme (Red Fade) which I like. However the menus when you click anything on the menu bar (File, Edit etc) remain the default colour (see screenshot attached). I would like these to be red also. Is it possible to change this background colour preferably using the userChrome.css file or alternatively an add-on? I know how to edit the userChrome file, so would like the code if possible please. Thanks in advance, Paul.
첨부된 스크린샷

모든 댓글 (3)

more options

You would need to use something like this CSS code to change that menu colour:

/* Changes background color */
menupopup, popup,
popup > menu > menupopup,
menupopup > menu > menupopup {
    -moz-appearance: none !important;
    background: black !important;
}

/* Changes the color of the separator lines */
menupopup menuseparator {
    -moz-appearance: none !important;
    background: white  !important;
    padding: 0 !important;
    border-color: transparent !important;
}

/* Changes the text color */
menupopup menu,
menuitem {
    -moz-appearance: none !important;
    color: white !important;
}

/* Changes the hover colors */
menupopup menu:hover,
menuitem:hover {
    -moz-appearance: none !important;
    color: black !important;
    background-color: skyblue !important;
}

/* Changes the arrow of the submenu to light color
    Remove this if you want to keep the arrow a dark color */
.menu-right{
    filter: invert(100%) !important;
}

Hope this helps.

If you need more CSS tweaks like this, I'd recommend visiting the FirefoxCSS Reddit. It's an entire community of people who are able to help with this kind of thing.

more options

Thanks for your help, I tried the first one, as I think that is what I am looking for. Unfortunately it does not work.

more options

Unfortunately, the FirefoxCSS subreddit is probably your best bet on this issue. There are tons of people on there who will likely be able to help you find/create the perfect CSS code to fix your issue.