binary-file.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. p.no-preview {
  17. margin-top: @line-height-computed / 2;
  18. font-size: 24px;
  19. color: @gray;
  20. }
  21. .text-loading {
  22. margin-top: @line-height-computed / 2;
  23. font-size: 24px;
  24. color: @gray;
  25. }
  26. .text-preview {
  27. margin-top: @line-height-computed / 2;
  28. .scroll-container {
  29. background-color: white;
  30. font-size: 0.8em;
  31. line-height: 1.1em;
  32. overflow: auto;
  33. border: 1px solid @gray-lighter;
  34. padding-left: 12px;
  35. padding-right: 12px;
  36. padding-top: 8px;
  37. padding-bottom: 8px;
  38. text-align: left;
  39. white-space: pre;
  40. font-family: monospace;
  41. }
  42. }
  43. .linked-file-icon {
  44. color: @blue;
  45. }
  46. }