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 54 55 56 57 58 59 60 61 62 63 64 65 66 | /* ======== 噗串篩選:一般狀態 ======== */ #filter_tab a { /* 不透明度 */ opacity: 1; /* 底色 */ background: #AFA; /* 字色 */ color: #3A3; } #filter_tab a i { /* 圖示顏色 */ color: #6D6; } #filter_tab a .unread_generic { /* 數字底色 */ background: #383; /* 數字字色 */ color: #9F9 !important; } /* ======== 噗串篩選:一般狀態指上 ======== */ #filter_tab a:hover { /* 底色 */ background: #AAF; /* 字色 */ color: #33A; } #filter_tab a:hover i { /* 圖示顏色 */ color: #66D; } #filter_tab a:hover .unread_generic { /* 數字底色 */ background: #338; /* 數字字色 */ color: #99F !important; } /* ======== 噗串篩選:已選擇的篩選 ======== */ #filter_tab a.filter_selected { /* 底色 */ background: #FAA; /* 字色 */ color: #A33; } #filter_tab a.filter_selected i { /* 圖示顏色 */ color: #D66; } #filter_tab a.filter_selected .unread_generic { /* 數字底色 */ background: #833; /* 數字字色 */ color: #F99 !important; } /* ======== 噗串篩選:已選擇的篩選指上時 ======== */ #filter_tab a.filter_selected:hover { /* 底色 */ background: #FFA; /* 字色 */ color: #AA3; } #filter_tab a.filter_selected:hover i { /* 圖示顏色 */ color: #DD6; } #filter_tab a.filter_selected:hover .unread_generic { /* 數字底色 */ background: #883; /* 數字字色 */ color: #FF9 !important; } /* ======== 訊息更新:一般狀態 ======== */ #updater .item a { /* 底色 */ background: #AFA; /* 字色 */ color: #3A3; } #updater .item a i { /* 圖示顏色 */ color: #6D6; } #updater a .unread_generic { /* 數字底色 */ background: #383; /* 數字字色 */ color: #9F9 !important; } /* ======== 訊息更新:一般狀態指上時 ======== */ #updater .item a:hover { /* 底色 */ background: #AAF; /* 字色 */ color: #33A; } #updater .item a:hover i { /* 圖示顏色 */ color: #66D; } #updater a:hover .unread_generic { /* 數字底色 */ background: #338; /* 數字字色 */ color: #99F !important; } |
Direct link: https://paste.plurk.com/show/3ZyUu884SAuJPBRztbKH