小黑屋
查看详细资料
TOP
userChrome.css This file sets the display rules for various elements in the Firefox user interface and is located in the sub-folder called chrome in your profile folder. This file does not exist by default, so you need to create it before you can start adding your preferences. There's actually an example file that exists by default, called userChrome-example.css. Basically, you can just rename that file by removing the -example part. userContent.css This file sets the display rules for web content and is located in the sub-folder called chrome in your profile folder. As with userChrome.css, this file does not exist by default, so you need to create it before you can start adding your preferences. As with userChrome.css, there is an example file that exists by default, called userContent-example.css. Basically, you can just rename that file by removing the -example part.
原帖由 ny 于 2007-8-23 15:51 发表 这个我是知道的,上文中我和他说的css不是指这个,我是说:我不知道在主题包内的哪一个css文件中修改去掉mac主题对标签已读、未读、当前的字体不同颜色的限定。 问了几个鬼佬都不知道,恐怕要去问macfoxII作 ...
.tabbrowser-tabs .tab-text { text-align: center !important; font-family: "Lucida Grande", tahoma, sans-serif, Arial !important; font-size: 11px !important; padding: 0 0 2px 0 !important; color: #929292; } .tabbrowser-tab[selected="true"] .tab-text, .tabbrowser-tab:hover .tab-text { color: #383838; }
.tabbrowser-tabs .tab-text { color: #f00 !important; } .tabbrowser-tab[selected="true"] .tab-text, .tabbrowser-tab:hover .tab-text { color: #00f !important; }
3)下面这段代码没法加入主题中,所以不嫌麻烦把它复制到userChrome.css的顶部(还不知道这个在哪里的就说)复制内容到剪贴板代码:/* Override the system text and background color for selected text */ ::-moz-selection { color: #000 !important; background-color: #b5d5ff !important; }
/* Override the system text and background color for selected text */ ::-moz-selection { color: #000 !important; background-color: #b5d5ff !important; }
原帖由 ny 于 2007-8-24 13:12 发表 在非mac主题下,那个颜色也是只有黑色和暗色两种的,但Tab Mix Lite CE可以开启前面说的效果,但遇到mac主题就不行,所以我估计mac主题的作者们为了保持那个风格把这里定死了,当然用 Tab Mix Plus还是可以强制打开的,这个扩展有点硬伤不提它。 你的方法是强制给它颜色(而且没有暗色),这样也是不受Tab Mix Lite CE控制了,我就是想让它像非mac主题一样,把这个选择权交给使用者,让 Tab Mix Lite CE 来开启或关闭
着色的问题,可以直接修改主题的jar里面/global/browser.css 代码在16楼那里,把color: #929292、color: #383838去掉就行了
.tabbrowser-tabs .tab-text { text-align: center !important; font-family: "Lucida Grande", tahoma, sans-serif, Arial !important; font-size: 11px !important; padding: 0 0 2px 0 !important; color: #929292; }
.tabbrowser-tabs .tab-text { text-align: center !important; font-family: "Lucida Grande", tahoma, sans-serif, Arial !important; font-size: 11px !important; padding: 0 0 2px 0 !important; } .tabbrowser-tabs { color: #929292; }
.tabbrowser-tab[selected="true"] .tab-text, .tabbrowser-tab:hover .tab-text { color: #383838; }
.tabbrowser-tab[selected="true"], .tabbrowser-tab:hover { color: #383838; }