post-feed.less 480 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Post Feed Flavor
  3. // --------------------------------------------------
  4. .post-feed .panel-body {
  5. padding-bottom: 0px;
  6. }
  7. .post-feed .post-body {
  8. position: relative;
  9. padding-top: 0px;
  10. padding-bottom: @line-height-computed;
  11. max-height: 300px;
  12. overflow-y: hidden;
  13. &:after {
  14. box-shadow: 0px 0px 16px 16px #ffffff;
  15. display: block;
  16. position: absolute;
  17. bottom: 0px;
  18. height: 0px;
  19. width: 100%;
  20. content: '-';
  21. color: transparent;
  22. }
  23. }