Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .markdownContentWrapper {
  2. :global(section.think) {
  3. padding-left: 10px;
  4. color: #8b8b8b;
  5. border-left: 2px solid #d5d3d3;
  6. margin-bottom: 10px;
  7. font-size: 12px;
  8. }
  9. :global(blockquote) {
  10. padding-left: 10px;
  11. border-left: 4px solid #ccc;
  12. }
  13. }
  14. .referencePopoverWrapper {
  15. max-width: 50vw;
  16. }
  17. .referenceChunkImage {
  18. width: 10vw;
  19. object-fit: contain;
  20. }
  21. .referenceInnerChunkImage {
  22. display: block;
  23. object-fit: contain;
  24. max-width: 100%;
  25. max-height: 6vh;
  26. }
  27. .referenceImagePreview {
  28. max-width: 45vw;
  29. max-height: 45vh;
  30. }
  31. .chunkContentText {
  32. .chunkText;
  33. max-height: 45vh;
  34. overflow-y: auto;
  35. }
  36. .documentLink {
  37. padding: 0;
  38. }
  39. .referenceIcon {
  40. padding: 0 6px;
  41. }
  42. .cursor {
  43. display: inline-block;
  44. width: 1px;
  45. height: 16px;
  46. background-color: black;
  47. animation: blink 0.6s infinite;
  48. vertical-align: text-top;
  49. @keyframes blink {
  50. 0% {
  51. opacity: 1;
  52. }
  53. 50% {
  54. opacity: 0;
  55. }
  56. 100% {
  57. opacity: 1;
  58. }
  59. }
  60. }
  61. .fileThumbnail {
  62. display: inline-block;
  63. max-width: 40px;
  64. }