Advertisement
Guest User

Untitled

a guest
Oct 13th, 2014
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1.  
  2.  
  3.     .replypage{
  4.  
  5.         counter-reset:p d t n;
  6.  
  7.     }
  8.  
  9.     .replypage .reflink{
  10.  
  11.         counter-increment:p;
  12.  
  13.     }
  14.  
  15.     .replypage form>div>table:last-child tbody tr{
  16.  
  17.         float: left;
  18.  
  19.     }
  20.  
  21.     .replypage form>div[id^="thread"] .reflink:after{
  22.  
  23.         content:counter(p);
  24.  
  25.     }
  26.  
  27.     .replypage .de-post-deleted{
  28.  
  29.         counter-increment:d;
  30.  
  31.     }
  32.  
  33.     .replypage .thumb{
  34.  
  35.         counter-increment:t;
  36.  
  37.     }
  38.  
  39.     .replypage .de-post-deleted~a .thumb{
  40.  
  41.         counter-increment:n;
  42.  
  43.     }
  44.  
  45.     .replypage form>div>table:last-child tbody:after{
  46.  
  47.         content:"Постов в треде: "counter(p)"; из них удалено: "counter(d);
  48.  
  49.     }
  50.  
  51.     .replypage form>div[id^="thread"]>table:last-child tbody:after{
  52.  
  53.         content:"Постов в треде: "counter(p);
  54.  
  55.     }
  56.  
  57.     .replypage form>div>table:last-child:after{
  58.  
  59.         content:"Изображений в треде: "counter(t)"; из них удалено: "counter(n);
  60.  
  61.     }
  62.  
  63.     .replypage form>div[id^="thread"]>table:last-child:after{
  64.  
  65.         content:"Изображений в треде: "counter(t);
  66.  
  67.     }
  68.  
  69.     .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{
  70.  
  71.         display:block;
  72.  
  73.     }
  74.  
  75.     .replypage form>div>table:last-child tbody:after,.replypage form>div[id^="thread"]>table:last-child tbody:after{
  76.  
  77.         margin-bottom:-2px;
  78.  
  79.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement