event.less 574 B

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