events.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //
  2. // Posts Events Styles
  3. // --------------------------------------------------
  4. // Events list
  5. //
  6. //==
  7. .posts-list {
  8. .post-events {
  9. .event {
  10. color: @text-muted;
  11. .fa-stack {
  12. margin-right: @line-height-computed / 3;
  13. &>.fa-stack-2x {
  14. color: @post-panel-border;
  15. }
  16. &>.fa-inverse {
  17. position: relative;
  18. bottom: 1px;
  19. }
  20. }
  21. img {
  22. border-radius: @border-radius-small;
  23. height: 18px;
  24. width: 18px;
  25. }
  26. a {
  27. &:link, &:visited {
  28. color: @state-hover;
  29. font-weight: bold;
  30. }
  31. &:hover {
  32. color: @state-hover;
  33. text-decoration: underline;
  34. }
  35. &:active, &:focus {
  36. color: @state-clicked;
  37. text-decoration: underline;
  38. }
  39. }
  40. form {
  41. display: inline-block;
  42. margin: 0px;
  43. margin-left: @line-height-computed / 2;
  44. padding: 0px;
  45. .opacity(0.2);
  46. transition-duration: 100ms;
  47. position: relative;
  48. }
  49. &:hover, &:active {
  50. form {
  51. .opacity(1);
  52. }
  53. }
  54. }
  55. .divider {
  56. padding-left: @line-height-computed / 4;
  57. color: @post-panel-border;
  58. div {
  59. display: inline-block;
  60. margin-left: @line-height-computed / 2;
  61. position: relative;
  62. left: 1px;
  63. bottom: 2px;
  64. font-size: @font-size-small;
  65. abbr {
  66. &:hover {
  67. color: @text-muted;
  68. }
  69. }
  70. }
  71. }
  72. }
  73. }