UX: don't show 0 vote count in crawler or print view

This commit is contained in:
Joe 2018-11-15 17:40:01 +08:00 committed by GitHub
parent a895626d10
commit 9c5b5243fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -119,3 +119,13 @@ div.poll {
}
}
}
// hides 0 vote count in crawler and print view
body.crawler {
.poll {
.poll-info,
.poll-button {
display: none;
}
}
}