阅读:2637回复:4
请问有没有标签页外观方面的扩展?
tmp和userchrome.js有点冲突,昨天安装完userchrome.js之后,当前和未读标签页的样式就没了。
原来是当前标签页粉色加粗显示,未读是红色普通字体。现在这二个效果没了。 tu就没这问题,但是不大想换,蛮喜欢tmp开网页时的进度条和已关闭标签页列表。 有可以实现这个效果的扩展么?“当前标签页粉色加粗显示,未读是红色普通字体。” |
|
1楼#
发布于:2012-04-09 11:21
用stylish写个样式吧,类似这样:
.tabbrowser-tabs tab[selected="true"] .tab-text, .tabbrowser-tabs tab[selected="true"] .tab-text-container { font-weight:bold !important; color: pink !important; } .tabbrowser-tabs tab:not([selected]) .tab-text, .tabbrowser-tabs tab:not([selected]) .tab-text-container { font-weight:normal !important; color: red !important; } 以上未测试。 或者直接用straitiform扩展,但未测试与TMP兼容性。 |
|
|
2楼#
发布于:2012-04-09 11:21
/*当前标签页粉色加粗*/ .tabbrowser-tab[selected="true"]{ color:#FF00EA !important; font-weight:bold !important; } /*未读标签页红色*/ .tabbrowser-tab[unread="true"]{ color: red !important; } |
|
|
3楼#
发布于:2012-04-09 11:21
|
|
4楼#
发布于:2012-04-09 11:21
我试试
版主大人fang5566 的是当前肉色,其他都是红色。 MalcKear 的 正是我要的效果。 谢谢几位 |
|