threadmap.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // Thread Map
  3. // --------------------------------------------------
  4. .thread-map {
  5. .user-avatar {
  6. img {
  7. border-radius: @border-radius-small;
  8. width: 32px;
  9. }
  10. }
  11. .media-heading {
  12. background: none;
  13. border-bottom: none;
  14. margin-bottom: 0px;
  15. color: @text-muted;
  16. .user-name {
  17. color: @state-default;
  18. font-weight: bold;
  19. }
  20. a.user-name {
  21. &:link, &:visited {
  22. color: @state-hover;
  23. }
  24. &:hover {
  25. color: @state-hover;
  26. text-decoration: text-underline;
  27. }
  28. &:active, &:focus {
  29. color: @state-clicked;
  30. text-decoration: text-underline;
  31. }
  32. }
  33. .separator {
  34. margin-left: @font-size-base / 3;
  35. margin-right: @font-size-base / 3;
  36. }
  37. .post-date {
  38. &:link, &:visited {
  39. color: @state-default;
  40. }
  41. &:hover, &:focus {
  42. color: @state-hover;
  43. text-decoration: underline;
  44. }
  45. &:active {
  46. color: @state-clicked;
  47. text-decoration: underline;
  48. }
  49. }
  50. }
  51. .post-preview {
  52. display: block;
  53. font-size: @font-size-small;
  54. &:link, &:active, &:visited, &:hover {
  55. color: @text-color;
  56. text-decoration: none;
  57. }
  58. }
  59. .map-tail {
  60. margin-bottom: 0px;
  61. }
  62. }