更改 Firefox 91 中的书签栏颜色

更改 Firefox 91 中的书签栏颜色

我已经改变了 userChrome.css 中顶部“工具栏”的颜色:

#nav-bar {
    background-color: #1f3f7c !important;
    color: white !important;
} 

/* Bookmark bar color */
#main-window #PersonalToolbar {
    background-color: #1f3f7c !important;
    color: white !important;
}

但这不会改变书签栏。我怎样才能改变书签栏的颜色?

在此处输入图片描述

答案1

如果您想更改书签栏的颜色,当前版本的 Firefox 中的 ID 是 personal-bookmarks

因此您需要的 userChrome.css 是

#nav-bar {
    background-color: #1f3f7c !important;
    color: white !important;
}

/* Bookmark bar color */
#personal-bookmarks {
    background-color: #1f3f7c !important;
    color: white !important;
}

带有自定义颜色的书签工具栏

您可以通过以下方式找到此类信息浏览器.css并寻找可能的候选人。

相关内容