db6aad63a3fa71e78d34cbd9f861728d3213344efb1428173c0fee472a36e69ad90eb1db422fc87c6890f0e0698e15565243b7fb2f09e7c2ca84801f96c3c7 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import 'mixins/mixins';
  2. @import 'common/var';
  3. @include b(descriptions-item) {
  4. vertical-align: top;
  5. @include e(container) {
  6. display: flex;
  7. .el-descriptions-item__label,
  8. .el-descriptions-item__content {
  9. display: inline-flex;
  10. align-items: baseline;
  11. }
  12. .el-descriptions-item__content {
  13. flex: 1;
  14. }
  15. }
  16. @include e(label) {
  17. &.has-colon {
  18. &::after {
  19. content: ':';
  20. position: relative;
  21. top: -0.5px;
  22. }
  23. }
  24. &.is-bordered-label {
  25. font-weight: bold;
  26. color: $--color-text-secondary;
  27. background: $--descriptions-item-bordered-label-background;
  28. }
  29. &:not(.is-bordered-label) {
  30. margin-right: 10px;
  31. }
  32. }
  33. @include e(content) {
  34. word-break: break-word;
  35. overflow-wrap: break-word;
  36. }
  37. }