/* Counter options */ /* Counter before poster name */ /* Poor contrast - green on green */ /* Looks out of place on posts with subject field */ .opCell { counter-reset: postnum -1; } .linkName:before { counter-increment:postnum 1; content: "#" counter(postnum); font-weight: bold; color: green; padding: 2px; } /* Counter before 'del' link */ /* Neat: doesn't count OP post */ .opCell { counter-reset: postnum; } .delLink:before { counter-increment:postnum 1; content: "#" counter(postnum); font-weight: bold; color: green; padding: 2px; } /* Counter on right margin */ .opCell { counter-reset: postnum -1; } .linkQuote:after { counter-increment:postnum 1; content: "#" counter(postnum); font-weight: bold; color: green; float: right; padding: 2px; } /* SAGE options */ /* SAGE before poster name */ .linkName:not(.noEmailName)[href="mailto:sage" i]:before { content: "SAGE!"; color: red; padding: 2px; } /* SAGE after poster name */ .linkName:not(.noEmailName)[href="mailto:sage" i]:after { content: "SAGE!"; color: red; padding: 2px; } /* SAGE on left margin (before checkbox) */ /* Looks like shit tbh */ .linkName:not(.noEmailName)[href="mailto:sage" i]:after { content: "SAGE!"; color: red; padding: 2px; }