1 2 3 4 5 6 7 8 9 10 | /*整個統計表格隱藏(自己看得到)*/ #plurk-dashboard:not(.own) #dash-stats-table { display:none; } /*隱藏統計表格單一項目(自己看得到)*/ /*人氣指數*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(1) :nth-child(-n+2) { display:none; } /*成功募集人數*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(1) :nth-child(n+3) { display:none; } /*Plurks*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(2) :nth-child(-n+2) { display:none; } /*回應數*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(2) :nth-child(n+3) { display:none; } /*註冊日期*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(3) :nth-child(-n+2) { display:none; } /*上次登入*/ #plurk-dashboard:not(.own) #dash-stats-table tr:nth-child(3) :nth-child(n+3) { display:none; } |
Direct link: https://paste.plurk.com/show/nxJ7A5sOTYykbLjKI88X