如何通过代码覆盖皮肤的设置?

发布于 2024-10-25 18:07:45 字数 1315 浏览 2 评论 0原文

我有一个 Firefox 扩展,可以更改浏览器的选项卡颜色,如下所示:

tabBrowser.tabContainer.childNodes[i].style.backgroundColor = "#8f8";

这段代码在我的开发配置文件中运行良好,但在工作配置文件中我安装了一个主题 (Noia 2.0 eXtreme),它为选项卡设置了自己的外观,所以我的代码无法更改选项卡的颜色。是否可以通过代码覆盖主题的设置?

我就是不明白。我找到了皮肤的CSS文件,看起来很简单。

tab {
    -moz-appearance: none;
    padding: 1px 5px 2px 7px;
    border-top: 1px  solid;
    border-right: 2px solid;
    border-left: 1px solid;
    -moz-border-top-colors: #FFFFFF;
    -moz-border-right-colors: #808080 #404040;
    -moz-border-left-colors: #FFFFFF;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    background-color: #CDCED3;
    color: #606060;
    min-height: 20px !important
}
tab[selected="true"] {
    margin-top: 0;
    padding: 1px 7px 4px 9px;
    font-weight: bold;
    background-image : url("chrome://browser/skin/icons/Bookmark-background.png") !important;
    border-bottom: 1px solid;
    -moz-border-bottom-colors: #FFFFFF;
    color: #000000;
}
tab:hover {
    color: #000000 !important;
}

环境

tabBrowser.tabContainer.childNodes[i].style.setProperty("background-image", "none", "important");

I have a Firefox extension that changes a browser's tab color like this:

tabBrowser.tabContainer.childNodes[i].style.backgroundColor = "#8f8";

This code works fine in my development profile, but in the working profile I have a theme installed (Noia 2.0 eXtreme), that sets its own appearance for the tabs, so my code can not change the tab's color. Is it possible to override the theme's settings through the code?

I just do not get it. I have found the skin's CSS file, it seems pretty simple.

tab {
    -moz-appearance: none;
    padding: 1px 5px 2px 7px;
    border-top: 1px  solid;
    border-right: 2px solid;
    border-left: 1px solid;
    -moz-border-top-colors: #FFFFFF;
    -moz-border-right-colors: #808080 #404040;
    -moz-border-left-colors: #FFFFFF;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    background-color: #CDCED3;
    color: #606060;
    min-height: 20px !important
}
tab[selected="true"] {
    margin-top: 0;
    padding: 1px 7px 4px 9px;
    font-weight: bold;
    background-image : url("chrome://browser/skin/icons/Bookmark-background.png") !important;
    border-bottom: 1px solid;
    -moz-border-bottom-colors: #FFFFFF;
    color: #000000;
}
tab:hover {
    color: #000000 !important;
}

Setting

tabBrowser.tabContainer.childNodes[i].style.setProperty("background-image", "none", "important");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-11-01 18:07:45

根据 https://developer.mozilla.org/en/DOM/CSSStyleDeclaration 你可以使用:

tabBrowser.tabContainer.childNodes[i].style.setProperty("background-color", "#8f8", "important");

according to https://developer.mozilla.org/en/DOM/CSSStyleDeclaration you could use:

tabBrowser.tabContainer.childNodes[i].style.setProperty("background-color", "#8f8", "important");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文