content-bash.module.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .root {
  2. display: contents;
  3. [data-slot="expand-button"] {
  4. flex: 0 0 auto;
  5. padding: 2px 0;
  6. font-size: 0.75rem;
  7. }
  8. [data-slot="body"] {
  9. border: 1px solid var(--sl-color-divider);
  10. border-radius: 0.25rem;
  11. overflow: hidden;
  12. width: 100%;
  13. }
  14. [data-slot="header"] {
  15. position: relative;
  16. border-bottom: 1px solid var(--sl-color-divider);
  17. width: 100%;
  18. height: 1.625rem;
  19. text-align: center;
  20. padding: 0 3.25rem;
  21. > span {
  22. max-width: min(100%, 140ch);
  23. display: inline-block;
  24. white-space: nowrap;
  25. overflow: hidden;
  26. line-height: 1.625rem;
  27. font-size: 0.75rem;
  28. text-overflow: ellipsis;
  29. color: var(--sl-color-text-dimmed);
  30. }
  31. &::before {
  32. content: "";
  33. position: absolute;
  34. pointer-events: none;
  35. top: 8px;
  36. left: 10px;
  37. width: 2rem;
  38. height: 0.5rem;
  39. line-height: 0;
  40. background-color: var(--sl-color-hairline);
  41. mask-image: var(--term-icon);
  42. mask-repeat: no-repeat;
  43. }
  44. }
  45. [data-slot="content"] {
  46. display: flex;
  47. flex-direction: column;
  48. padding: 0.5rem calc(0.5rem + 3px);
  49. pre {
  50. --shiki-dark-bg: var(--sl-color-bg) !important;
  51. background-color: var(--sl-color-bg) !important;
  52. line-height: 1.6;
  53. font-size: 0.75rem;
  54. white-space: pre-wrap;
  55. word-break: break-word;
  56. margin: 0;
  57. span {
  58. white-space: break-spaces;
  59. }
  60. }
  61. }
  62. [data-slot="output"] {
  63. display: -webkit-box;
  64. -webkit-box-orient: vertical;
  65. -webkit-line-clamp: 10;
  66. line-clamp: 10;
  67. overflow: hidden;
  68. }
  69. &[data-expanded] [data-slot="output"] {
  70. display: block;
  71. -webkit-line-clamp: none;
  72. line-clamp: none;
  73. overflow: visible;
  74. }
  75. }