binary-file.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .binary-file {
  2. padding: @line-height-computed / 2;
  3. background-color: @gray-lightest;
  4. text-align: center;
  5. overflow: auto;
  6. img {
  7. max-width: 100%;
  8. max-height: 90%;
  9. display: block;
  10. margin: auto;
  11. margin-top: @line-height-computed / 2;
  12. border: 1px solid @gray;
  13. .box-shadow(0 2px 3px @gray;);
  14. background-color: white;
  15. }
  16. .img-preview {
  17. background: url('/img/spinner.gif') no-repeat;
  18. min-width: 200px;
  19. min-height: 200px;
  20. }
  21. p.no-preview {
  22. margin-top: @line-height-computed / 2;
  23. font-size: 24px;
  24. color: @gray;
  25. }
  26. .text-loading {
  27. margin-top: @line-height-computed / 2;
  28. font-size: 24px;
  29. color: @gray;
  30. }
  31. .text-preview {
  32. margin-top: @line-height-computed / 2;
  33. .scroll-container {
  34. background-color: white;
  35. font-size: 0.8em;
  36. line-height: 1.1em;
  37. overflow: auto;
  38. border: 1px solid @gray-lighter;
  39. padding-left: 12px;
  40. padding-right: 12px;
  41. padding-top: 8px;
  42. padding-bottom: 8px;
  43. text-align: left;
  44. white-space: pre;
  45. font-family: monospace;
  46. }
  47. }
  48. .linked-file-icon {
  49. color: @blue
  50. }
  51. }