post.less 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // Posts List Post
  3. // --------------------------------------------------
  4. // Post status flags
  5. .post-status-message {
  6. padding: @padding-base-vertical @padding-base-horizontal;
  7. overflow: auto;
  8. .material-icon {
  9. float: left;
  10. font-size: 28px;
  11. }
  12. p {
  13. margin: 0px;
  14. margin-top: (28px - @line-height-computed) / 2;
  15. margin-left: 36px;
  16. }
  17. }
  18. .post-status-hidden {
  19. background-color: @brand-danger;
  20. color: #fff;
  21. }
  22. .post-status-unapproved {
  23. background-color: @brand-primary;
  24. color: #fff;
  25. }
  26. // Hidden post message
  27. .posts-list .panel-body-hidden {
  28. .lead, .text-muted {
  29. margin: 0px;
  30. }
  31. }
  32. // Invalid post message
  33. .posts-list .panel-body-invalid {
  34. .lead, .text-muted {
  35. margin: 0px;
  36. }
  37. }
  38. // Post footer
  39. .post-footer {
  40. overflow: auto;
  41. .btn.pull-right {
  42. margin-left: @line-height-computed / 2;
  43. }
  44. }