Problem
Previously we printed categories as pipe separated blocks. However, now they are hidden. @Fomafix (and possibly others) think they shouldn't be hidden. Should these be shown?
@Nirzar says "Not sure how useful these are for regular readers. The downside is it takes space and in some cases waste an entire page if you are printing it on paper"
Solution
- Evaluate the usefulness of categories while printing articles on Wikipedia
IF they are useful
- Style categories to indicate the difference between structured data and content
Design
CSS
.catlinks { overflow: hidden; margin-top: 20px; } // FIXME: Overflow hidden is just a hack for Clearfix since I'm floating all LIs .catlinks ul { list-style-type: none; margin: 0; } .catlinks ul li { float: left; display: inline-block; border: 1px solid #999; color: #000; border-radius: 40px; margin: 3px; } .catlinks ul li a { border: none; padding: 0px 8px; font-size: 8pt; font-weight: bold; } #mw-normal-catlinks > a { font-family: "Charis SIL", serif; border: none; font-weight: bold; font-size: 21px; }
#mw-hidden-catlinks{ display: none; }