in reply to PM CSS and markup optimizations

Very nice! Good work!

BTW, you could also copy the original CSS files for editing and use CSS::Minifier::XS on the production file for even more saved bytes.

I just noticed that some of the Nodelets (like "Other users" and "* Best") are peppered with span-elements for even/odd row coloring. Given that these nodelets are mostly link lists, with the link color provided by the browser, this also seems to achieve nothing else than wasting bandwidth (and the nodelets are not cached, compared to the CSS file which are). Maybe you could take a look at that, too?

Sorry for any bad spelling, broken formatting and missing code examples. During a slight disagreement with my bicycle (which i lost), i broke my left forearm near the elbow. I'm doing the best i can here...

Replies are listed 'Best First'.
Re^2: PM CSS and markup optimizations
by kimmel (Scribe) on Jul 11, 2012 at 23:45 UTC
    Yes, this:
    <span class="other-users-text">Others <span class="other-users-blurb"> +examining</span> the Monastery:</span> (12)<br /><ul class="spacey-li +st"><li><span class='even-row'><span class='item-000'><span class='us +er-level-24'><span class='user-461912'><a href="?node_id=461912" titl +e="GrandFather's home node. Level 24. Member of: janitors, pmdev">Gra +ndFather</a></span></span></span></span></li> <li><span class='odd-row'><span class='item-001'><span class='user-lev +el-20'><span class='user-421114'><a href="?node_id=421114" title="Tan +ktalus's home node. Level 20. Member of: pmdev">Tanktalus</a></span>< +/span></span></span></li> <li><span class='even-row'><span class='item-002'><span class='user-le +vel-18'><span class='user-70929'><a href="?node_id=70929" title="atcr +oft's home node. Level 18">atcroft</a></span></span></span></span></l +i> <li><span class='odd-row'><span class='item-003'><span class='user-lev +el-14'><span class='user-212789'><a href="?node_id=212789" title="the +zip's home node. Level 14">thezip</a></span></span></span></span></li +> <li><span class='even-row'><span class='item-004'><span class='user-le +vel-14'><span class='user-20250'><a href="?node_id=20250" title="pemu +ngkah's home node. Level 14">pemungkah</a></span></span></span></span +></li> <li><span class='odd-row'><span class='item-005'><span class='user-lev +el-14'><span class='user-861371'><a href="?node_id=861371" title="kco +tt's home node. Level 14">kcott</a></span></span></span></span></li> <li><span class='even-row'><span class='item-006'><span class='user-le +vel-11'><span class='user-161890'><a href="?node_id=161890" title="La +dy_Aleena's home node. Level 11">Lady_Aleena</a></span></span></span> +</span></li> <li><span class='odd-row'><span class='item-007'><span class='user-lev +el-10'><span class='user-890813'><a href="?node_id=890813" title="cav +ac's home node. Level 10">cavac</a></span></span></span></span></li> <li><span class='even-row'><span class='item-008'><span class='user-le +vel-8'><span class='user-806480'><a href="?node_id=806480" title="Nei +ghbour's home node. Level 8">Neighbour</a></span></span></span></span +></li> <li><span class='odd-row'><span class='item-009'><span class='user-lev +el-7'><span class='user-971084'><a href="?node_id=971084" title="froz +enwithjoy's home node. Level 7">frozenwithjoy</a></span></span></span +></span></li> <li><span class='even-row'><span class='item-010'><span class='user-le +vel-4'><span class='user-910459'><a href="?node_id=910459" title="kim +mel's home node. Level 4">kimmel</a></span></span></span></span></li> <li><span class='odd-row'><span class='item-011'><span class='user-lev +el-1'><span class='user-243505'><a href="?node_id=243505" title="im2' +s home node. Level 1">im2</a></span></span></span></span></li> </ul><span class='update-time'><small>As of 2012-07-11 23:30 GMT</smal +l></span>
    can be made simpler too. I will make sure to add a CSS rule and strip this all out of the demo version.