ParagraphBlock.css 709 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * ParagraphBlock.css - 段落块样式
  3. */
  4. .paragraph-block-wrapper {
  5. position: relative;
  6. margin-bottom: 12px;
  7. padding-left: 0;
  8. }
  9. .paragraph-block {
  10. position: relative;
  11. color: #262626;
  12. font-size: 14px;
  13. line-height: 1.8;
  14. word-wrap: break-word;
  15. word-break: break-word;
  16. padding: 4px 0;
  17. }
  18. .paragraph-block-list-item {
  19. display: grid;
  20. grid-template-columns: 28px minmax(0, 1fr);
  21. align-items: flex-start;
  22. column-gap: 4px;
  23. }
  24. .paragraph-list-marker {
  25. width: 28px;
  26. text-align: right;
  27. color: #1455d9;
  28. font-size: 14px;
  29. font-weight: 600;
  30. font-variant-numeric: tabular-nums;
  31. line-height: 1.8;
  32. }
  33. .paragraph-block-list-item .rich-text-editor {
  34. flex: 1;
  35. min-width: 0;
  36. }