posting.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Posting
  3. // --------------------------------------------------
  4. // Affix and style placeholder
  5. #posting-placeholder {
  6. background-color: @gray-lighter;
  7. position: fixed;
  8. bottom: 0px;
  9. width: 100%;
  10. &.in {
  11. .box-shadow(0px 0px 8px @gray-light);
  12. }
  13. }
  14. // Posting ui preview
  15. .posting-ui-preview {
  16. padding: @line-height-computed 0px;
  17. position: relative;
  18. .form-control {
  19. box-shadow: none;
  20. resize: none;
  21. }
  22. .loading-overlay {
  23. position: absolute;
  24. width: 100%;
  25. height: 100%;
  26. min-height: 100%;
  27. top: 0px;
  28. left: 0px;
  29. right: 0px;
  30. bottom: 0px;
  31. }
  32. .loading-cover {
  33. display: table;
  34. width: 100%;
  35. height: 100%;
  36. min-height: 100%;
  37. }
  38. .loading-inner {
  39. display: table-cell;
  40. text-align: center;
  41. vertical-align: middle;
  42. .loader {
  43. height: 100px;
  44. .loader-spinning-wheel {
  45. width: 100px;
  46. height: 100px;
  47. }
  48. }
  49. }
  50. }
  51. // First row
  52. #posting-placeholder .first-row {
  53. margin-bottom: @line-height-computed;
  54. }