1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*頻道向上展開*/
#filter_tab a, #filter_tab:hover a.no_unread {
height: 25px;
margin-top: 6px;
margin-right: 6px;
}
/*頻道圖示化*/
#filter_tab li {
position: relative;
}
#filter_tab a {
width: 30px;
padding: 0;
overflow: hidden;
}
#filter_tab a i {
float: left;
width: 30px;
line-height: 25px;
}
#filter_tab a i::before {
width: 30px;
}
/*讓頻道未讀數字出現在右邊*/
#updater {
margin-left: 35px;
}
#filter_tab a .unread_generic {
position: absolute;
top: 0;
left: 30px;
width: 30px;
height: 25px;
line-height: 25px;
margin-top: 6px;
margin-left: 0;
padding: 0 4px;
border-radius: 5px;
}
/*頻道的普通按鈕*/
#filter_tab a {
opacity: 0.8;
border-radius: 50px 0px 0px 50px;
}
/*頻道的普通按鈕:滑鼠移至*/
#filter_tab a:hover {
background-color: #fe4d4d;
color: rgba(255, 255, 255, 1);
}
/*頻道的未讀數字*/
#filter_tab a .unread_generic {
border-radius: 0px 50px 50px 0px;
}