Last active
August 29, 2015 14:21
-
-
Save mrmrs/e9c39bfcbd19b629562f to your computer and use it in GitHub Desktop.
Single purpose rulesets from stackoverflow.com to set display: none on elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* STACKOVERFLOW */ | |
.edit-block { | |
display: none; | |
} | |
#feed-link-text { | |
display: none; | |
} | |
.faq-page .col-section>.col-detail { | |
display: none; | |
} | |
.dno { | |
display: none; | |
} | |
.tagged-ignored-hidden { | |
display: none; | |
} | |
.faq-page .col-summary.only { | |
display: none; | |
} | |
.edit-field-overlay { | |
display: none; | |
} | |
#sidebar, | |
#system-message, | |
#header, | |
#nav, | |
#tabs, | |
.tabs, | |
#footer, | |
#hmenus, | |
#hlinks, | |
.bounty-link, | |
.comments-link, | |
.post-menu, | |
.post-comments, | |
.notify, | |
form, | |
h2.bottom-notice, | |
div.vote, | |
td.votecell { | |
display: none; | |
} | |
.deleted-answer .comments .deleted-comment .undelete-comment, | |
.deleted-answer .comments .deleted-comment:hover .undelete-comment { | |
display: none; | |
} | |
table.flagged-posts .fullhide { | |
display: none; | |
} | |
.message.message-config.tooltip .message-inner:before { | |
display: none; | |
} | |
.flag-quality-warning .comments .deleted-comment .undelete-comment, | |
.flag-quality-warning .comments .deleted-comment:hover .undelete-comment { | |
display: none; | |
} | |
.ice-ice-baby .votecell .vote-up-off, | |
.ice-ice-baby .votecell .vote-down-off { | |
display: none; | |
} | |
#custom-header { | |
display: none; | |
} | |
div.snippet-hidden div.snippet-currently-hidden { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment