61009c1b61c7bb5bb7f64e0cbda1899db1305442.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "../index";
  2. @numberInfo-prefix-cls: ~"@{ant-pro-prefix}-number-info";
  3. .@{numberInfo-prefix-cls} {
  4. .ant-pro-number-info-subtitle {
  5. color: @text-color-secondary;
  6. font-size: @font-size-base;
  7. height: 22px;
  8. line-height: 22px;
  9. overflow: hidden;
  10. text-overflow: ellipsis;
  11. word-break: break-all;
  12. white-space: nowrap;
  13. }
  14. .number-info-value {
  15. margin-top: 4px;
  16. font-size: 0;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. word-break: break-all;
  20. white-space: nowrap;
  21. & > span {
  22. color: @heading-color;
  23. display: inline-block;
  24. line-height: 32px;
  25. height: 32px;
  26. font-size: 24px;
  27. margin-right: 32px;
  28. }
  29. .sub-total {
  30. color: @text-color-secondary;
  31. font-size: @font-size-lg;
  32. vertical-align: top;
  33. margin-right: 0;
  34. i {
  35. font-size: 12px;
  36. transform: scale(0.82);
  37. margin-left: 4px;
  38. }
  39. :global {
  40. .anticon-caret-up {
  41. color: @red-6;
  42. }
  43. .anticon-caret-down {
  44. color: @green-6;
  45. }
  46. }
  47. }
  48. }
  49. }