Advertisement
Guest User

Untitled

a guest
Apr 30th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. .replypage{
  2.     counter-reset:p d t n;
  3. }
  4. .replypage .reflink{
  5.     counter-increment:p;
  6. }
  7. .replypage form>div[id^="thread"] .reflink:after{
  8.     content:counter(p);
  9. }
  10. .replypage .de-ppanel-del{
  11.     counter-increment:d;
  12. }
  13. .replypage .thumb{
  14.     counter-increment:t;
  15. }
  16. .replypage .de-ppanel-del~a .thumb{
  17.     counter-increment:n;
  18. }
  19. .replypage form>div>table:last-child tbody:after{
  20.     content:"Постов в треде: "counter(p)"; из них удалено: "counter(d);
  21. }
  22. .replypage form>div[id^="thread"]>table:last-child tbody:after{
  23.     content:"Постов в треде: "counter(p);
  24. }
  25. .replypage form>div>table:last-child:after{
  26.     content:"Изображений в треде: "counter(t)"; из них удалено: "counter(n);
  27. }
  28. .replypage form>div[id^="thread"]>table:last-child:after{
  29.     content:"Изображений в треде: "counter(t);
  30. }
  31. .replypage form>div>table:last-child tbody:after,.replypage form>div[id^="thread"]>table:last-child tbody:after,.replypage form>div>table:last-child:after,.replypage form>div[id^="thread"]>table:last-child:after{
  32.     display:block;
  33. }
  34. .replypage form>div>table:last-child tbody:after,.replypage form>div[id^="thread"]>table:last-child tbody:after{
  35.     margin-bottom:-2px;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement