The reset we used was a mix of Normalize, the Paul Irish reset, sprinkled with some blueprint.css, and base styles. It was hard to maintain and just seemed outdated (setting the base font-size to 10px instead of 16px, among other things). Normalize sets saner defaults and is generally just not as disruptive as a full reset. The code was added as is, has only its comments stripped (for now), and is not mixed with any styles to make future updates to it as easy as possible. See #3, #44, #174, #267, #617.
10 lines
No EOL
456 B
SCSS
10 lines
No EOL
456 B
SCSS
/* Globally hidden elements when Infinite Scroll is supported and in use. */
|
|
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden). */
|
|
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling). */
|
|
display: none;
|
|
}
|
|
|
|
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
|
|
.infinity-end.neverending .site-footer {
|
|
display: block;
|
|
} |