report-common.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .card-wrapper {
  2. $gap: 12px;
  3. margin: $gap var(--page-container-bleeding, 0);
  4. border-radius: $gap;
  5. background-color: transparent !important;
  6. // box-shadow: inset 0px 0px $gap * 3 0px rgba(52, 167, 107, 0.38);
  7. .card-header {
  8. // --td-cell-title-color: var(--primary-color);
  9. --td-cell-title-color: black;
  10. --td-loading-color: var(--primary-color);
  11. background-color: transparent;
  12. border-radius: 5px;
  13. &__title {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. .icon {
  18. margin-right: 8px;
  19. margin-top: 2px;
  20. height: 20px;
  21. }
  22. }
  23. .loading {
  24. margin-right: 8px;
  25. }
  26. }
  27. .card-body {
  28. padding: var(--td-cell-vertical-padding, 32rpx) var(--td-cell-horizontal-padding, 32rpx);
  29. .row+.row {
  30. margin-top: 8px;
  31. }
  32. }
  33. }
  34. .empty-wrapper {
  35. padding: 12px;
  36. --td-empty-description-color: #939393;
  37. --td-empty-description-line-height: var(--td-empty-description-font-size);
  38. &.error {
  39. --td-empty-icon-color: #FF611B;
  40. }
  41. }
  42. .extra-warapper {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. font-size: 14px;
  47. // color: var(--primary-color);
  48. color: #1D6FF6;
  49. .icon {
  50. margin-top: 2px;
  51. }
  52. }