index.module.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .stepHeader {
  2. padding: 42px 64px 12px 0;
  3. }
  4. .form {
  5. position: relative;
  6. padding: 12px 64px;
  7. }
  8. .dataSourceItem {
  9. @apply w-full relative flex items-center p-3 h-14 bg-components-option-card-option-bg rounded-xl
  10. cursor-pointer border border-components-option-card-option-border text-text-secondary;
  11. }
  12. .dataSourceItem:hover {
  13. @apply bg-components-option-card-option-bg-hover border border-components-option-card-option-border-hover shadow-xs shadow-shadow-shadow-3;
  14. }
  15. .dataSourceItem.active {
  16. @apply bg-components-option-card-option-selected-bg border border-components-option-card-option-selected-border
  17. ring-[0.5px] ring-components-option-card-option-selected-border;
  18. }
  19. .dataSourceItem.disabled,
  20. .dataSourceItem.disabled:hover {
  21. @apply bg-components-option-card-option-bg border-[0.5px] border-components-option-card-option-border cursor-not-allowed text-text-disabled shadow-none;
  22. }
  23. .comingTag {
  24. @apply flex justify-center items-center bg-white;
  25. position: absolute;
  26. right: 8px;
  27. top: -10px;
  28. padding: 1px 6px;
  29. height: 20px;
  30. border: 1px solid #E0EAFF;
  31. border-radius: 6px;
  32. font-weight: 500;
  33. font-size: 12px;
  34. line-height: 18px;
  35. color: #444CE7;
  36. }
  37. .datasetIcon {
  38. @apply flex shrink-0 mr-2 w-8 h-8 rounded-lg bg-center bg-no-repeat bg-text-primary-on-surface border-[0.5px] border-divider-regular backdrop-blur-sm;
  39. background-image: url(../assets/file.svg);
  40. background-size: 16px;
  41. }
  42. .datasetIcon.notion {
  43. background-image: url(../assets/notion.svg);
  44. background-size: 20px;
  45. }
  46. .datasetIcon.web {
  47. background-image: url(../assets/web.svg);
  48. }
  49. .submitButton {
  50. width: 120px;
  51. }
  52. .dividerLine {
  53. margin: 32px 0;
  54. max-width: 640px;
  55. height: 1px;
  56. background-color: #eaecf0;
  57. }
  58. .notionIcon {
  59. background: var(--color-components-card-bg) center no-repeat url(../assets/notion.svg);
  60. background-size: 24px;
  61. }