karmas.less 822 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Post Love/Hate Votes List
  2. // -------------------------
  3. .post-votes-list {
  4. .vote-user {
  5. &, &:link, &:visited {
  6. color: @gray;
  7. font-size: @fontSizeLarge;
  8. font-weight: bold;
  9. }
  10. .vote-icon {
  11. background-color: @grayLight;
  12. border-radius: @baseBorderRadius;
  13. padding: 2px 3px;
  14. position: relative;
  15. bottom: (@fontSizeLarge - @baseFontSize) / 2;
  16. font-size: @baseFontSize;
  17. i {
  18. background-image: url("@{iconWhiteSpritePath}");
  19. }
  20. }
  21. }
  22. a.vote-user {
  23. &:hover, &:active {
  24. color: @textColor;
  25. text-decoration: none;
  26. }
  27. }
  28. .post-likes {
  29. .vote-icon {
  30. background-color: @green;
  31. }
  32. }
  33. .post-dislikes {
  34. .vote-icon {
  35. background-color: @red;
  36. }
  37. }
  38. }