index.module.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .progressContainer {
  2. @apply relative pb-4 w-full;
  3. border-bottom: 0.5px solid #EAECF0;
  4. }
  5. .sourceItem {
  6. position: relative;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin-bottom: 4px;
  11. padding: 0 4px;
  12. height: 24px;
  13. background: #EFF4FF;
  14. border-radius: 6px;
  15. overflow: hidden;
  16. }
  17. .sourceItem .info .name {
  18. font-weight: 500;
  19. font-size: 12px;
  20. line-height: 18px;
  21. color: #101828;
  22. }
  23. .sourceItem.success .info .name {
  24. color: #05603A;
  25. }
  26. .sourceItem .percent {
  27. font-weight: 500;
  28. font-size: 12px;
  29. line-height: 18px;
  30. color: #344054;
  31. z-index: 1;
  32. }
  33. .sourceItem .error {
  34. color: #D92D20;
  35. }
  36. .sourceItem .success {
  37. color: #05603A;
  38. }
  39. .commonIcon {
  40. @apply w-3 h-3 mr-1 inline-block align-middle;
  41. }
  42. .highIcon {
  43. mask-image: url(../assets/star.svg);
  44. @apply bg-orange-500;
  45. }
  46. .economyIcon {
  47. background-color: #444ce7;
  48. mask-image: url(../assets/normal.svg);
  49. }
  50. .tokens {
  51. @apply text-xs font-medium px-1;
  52. }
  53. .price {
  54. color: #f79009;
  55. @apply text-xs font-medium;
  56. }
  57. .unknownFileIcon {
  58. background-image: url(../assets/unknown.svg);
  59. }
  60. .csv {
  61. background-image: url(../assets/csv.svg);
  62. }
  63. .docx {
  64. background-image: url(../assets/docx.svg);
  65. }
  66. .xlsx,
  67. .xls {
  68. background-image: url(../assets/xlsx.svg);
  69. }
  70. .pdf {
  71. background-image: url(../assets/pdf.svg);
  72. }
  73. .html,
  74. .htm {
  75. background-image: url(../assets/html.svg);
  76. }
  77. .md,
  78. .markdown {
  79. background-image: url(../assets/md.svg);
  80. }
  81. .txt {
  82. background-image: url(../assets/txt.svg);
  83. }
  84. .json {
  85. background-image: url(../assets/json.svg);
  86. }