Skip to content

Instantly share code, notes, and snippets.

@hoshikata
Created August 7, 2016 14:10
Show Gist options
  • Save hoshikata/1381b879cd3d75b1b93239c0a623ad1c to your computer and use it in GitHub Desktop.
Save hoshikata/1381b879cd3d75b1b93239c0a623ad1c to your computer and use it in GitHub Desktop.
/**頻道顏色設定**/
/*通知常態*/
#updater .item a {background: #D9D9D9 !important;}
/*通知滑鼠移至*/
#updater .item a:hover
{
background: #FCFCFC !important;
color: #333 !important;
}
/*頻道常態*/
#filter_tab a.off_tab
{
background: none !important;
color: rgba(0,0,0,0) !important;
}
/*頻道滑鼠移至*/
#filter_tab a.off_tab:hover
{
background: rgba(100,100,100,0.25) !important;
text-decoration: none !important;
}
/*選中的頻道*/
#filter_tab a.filter_selected
{
background: #333 !important;
color: rgba(0,0,0,0) !important;
}
/*未讀數字設定*/
.unread_generic
{
background: none !important; /*底色*/
color: #333 !important;
font-size: 12px; /*字大小*/
font-weight: bold; /*字粗體*/
text-shadow: 0px 0px 1px #666; /*文字陰影-X軸 Y軸 暈染 顏色*/
}
#filter_tab .unread_generic
{
width: 25px !important; /*底色寬度*/
height: 25px !important; /*底色高度*/
top: -18px; /*內容位置上*/
margin-left: -65px; /*內容位置左*/
padding-top: 0px; /*內容上內邊距*/
padding-left: 5px; /*內容左內邊距*/
border-radius: 20px; /*底色圓角*/
position: absolute;
}
/*未選中頻道的未讀數量*/
#filter_tab a.off_tab .unread_generic
{
background: none !important; /*底色*/
color: #000 !important; /*字色*/
text-shadow: 0px 0px 1px #666; /*文字陰影-X軸 Y軸 暈染 顏色*/
}
/*選中頻道的未讀數字*/
#filter_tab a.filter_selected .unread_generic
{
background: #333 !important; /*底色*/
color: #fff !important; /*字色*/
text-shadow: 0px 0px 1px #bbb; /*文字陰影-X軸 Y軸 暈染 顏色*/
}
/*我的訊息的位置修正*/
#filter_tab a#own_plurks_tab_btn .unread_generic {margin-left: -90px !important;}
/*私人訊息的位置修正*/
#filter_tab a#private_plurks_tab_btn .unread_generic {margin-left: -60px !important;}
/*回應過的訊息字的位置修正*/
#filter_tab a#responded_plurks_tab_btn .unread_generic {margin-left: -90px !important;}
/*轉撲訊息字的位置修正*/
#filter_tab a#replurked_plurks_tab_btn .unread_generic {margin-left: -75px !important;}
/*喜歡訊息字的位置修正*/
#filter_tab a#favorite_plurks_tab_btn .unread_generic {margin-left: -75px !important;}
/*icon顏色-常態*/
#filter_tab i {color: #333 !important;}
/*icon顏色-選中*/
#filter_tab a.filter_selected i {color: #bbb !important;}
/*私人訊息icon位置修正*/
.pif-message-private:before {left: 3px;}
/*轉撲icon位置修正*/
.pif-replurk:before {left: 1px;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment