style.module.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .progressBar {
  2. @apply absolute top-0 h-4;
  3. }
  4. .barPaused {
  5. background: linear-gradient(
  6. 270deg,
  7. rgba(208, 213, 221, 0.8) -2.21%,
  8. rgba(208, 213, 221, 0.5) 100%
  9. );
  10. }
  11. .barProcessing {
  12. background: linear-gradient(
  13. 90deg,
  14. rgba(41, 112, 255, 0.9) 0%,
  15. rgba(21, 94, 239, 0.9) 100%
  16. );
  17. }
  18. .opBtn {
  19. @apply w-fit h-6 text-xs px-2 py-1 text-gray-700 rounded-md !important;
  20. }
  21. .opIcon {
  22. @apply mr-1 stroke-current text-gray-700 w-3 h-3;
  23. }
  24. .progressContainer {
  25. @apply relative flex mb-2 h-4 rounded-md w-full;
  26. }
  27. .progressBgItem {
  28. @apply flex-1 border-r border-r-white first:rounded-l-md;
  29. }
  30. .progressBgItem:nth-last-child(2) {
  31. @apply rounded-r-md;
  32. }
  33. .progressData {
  34. @apply w-full flex items-center text-xs text-gray-700;
  35. }
  36. .previewTip {
  37. @apply pb-1 pt-12 text-gray-900 text-sm font-medium;
  38. }
  39. .embeddingStatus {
  40. @apply flex items-center justify-between text-gray-900 font-medium text-base mb-3;
  41. }
  42. .commonIcon {
  43. @apply w-3 h-3 mr-1 inline-block align-middle;
  44. }
  45. .highIcon {
  46. mask-image: url(../../assets/star.svg);
  47. @apply bg-orange-500;
  48. }
  49. .economyIcon {
  50. background-color: #444ce7;
  51. mask-image: url(../../assets/normal.svg);
  52. }
  53. .tokens {
  54. @apply text-xs font-medium px-1;
  55. }
  56. .price {
  57. color: #f79009;
  58. @apply text-xs font-medium;
  59. }