event.less 493 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // Events Flavor
  3. // --------------------------------------------------
  4. // Style label
  5. .posts-list .event .label-unread {
  6. background-color: @post-unread-label;
  7. color: #fff;
  8. }
  9. // Style info text
  10. .posts-list .event-info {
  11. a, a:link, a:visited, .btn-link {
  12. color: @gray;
  13. }
  14. a:focus, a:active, a:focus:active,
  15. .btn-link:focus, .btn-link:active, .btn-link:focus:active {
  16. color: @text-color;
  17. }
  18. }
  19. // Fade out hidden event
  20. .posts-list .event-hidden {
  21. .opacity(0.33);
  22. }