thunderbird最新版本css无效

阅读:2697回复:3
2013-04-01 17:12
写私信
楼主#
win7环境下 雷鸟的邮件列表字小,看着很难受,搜索教程,按教程的做,css放到指定文件下后,无效还是老样子
但是在xp环境下,放到指定的文件夹下没有问题 完美解决,请问是什么原因??zhouhuigr@gmail.com期待回复
2013-04-01 17:12
写私信
1楼#
一样的吧,都是放在配置文件夹 chrome/userChrome.css 里面。这个和系统无关,除非你路径放错了。
Firefox More than meets your experience
2013-04-01 17:12
写私信
2楼#
沒圖沒 CSS
自己用 DOM Inspector 查
Firefox 開啟安全模式,停用個人設定、佈景主題及擴充套件(無附加元件)測試:
說明 > 重新啟動但停用附加元件(Firefox 4+)
Firefox Profile: 說明 > 疑難排解資訊 > 開啟資料夾
排版引擎:Firefox(Gecko), Opera(Presto), Google Chrome(WebKit),
Safari(WebKit), Internet Explorer(Trident), Konqueror(KHTML)
2013-04-01 17:12
写私信
3楼#
路径路径路径路径路径
css
/* 全域参数 */
* {font-family:Microsoft YaHei  !important}
font-weight: bolder !important;
* {font-size: 12px !important}

/* 信件列表 */
treechildren:-moz-tree-cell-text(unread) {
font-weight: bolder !important;
color: rgb(255,0,0) !important;
font-size: 16px !important;
font-family: Microsoft YaHei
http://soft.chinabyte.com/os/152/12309652.shtml !important;
}

treechildren:-moz-tree-cell-text(read){
color: black !important;
font-size: 14px !important;
font-weight: bold !important;
font-family: Microsoft YaHei  !important;
}

treechildren::-moz-tree-cell-text(selected) {
  background-color: Highlight !important;
  color: white !important;
}


/*行高*/
treechildren:-moz-tree-row {
height: 24px !important;
}


/*改变螺纹窗口交替行的颜色*/
/* change Thread pane alternating row colours TB2 & 3 */
#threadTree treechildren::-moz-tree-row(odd) {
  -moz-appearance: none !important;
  background-image: none !important;
  background-color:#EFEFEF !important;
}
#threadTree treechildren::-moz-tree-row(selected) {
  background-color: -moz-Dialog !important;
}
#threadTree treechildren::-moz-tree-row(selected, focus) {
  background-color: Highlight !important;
}