index.module.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .stepHeader {
  2. position: sticky;
  3. top: 0;
  4. left: 0;
  5. padding: 42px 64px 12px;
  6. font-weight: 600;
  7. font-size: 18px;
  8. line-height: 28px;
  9. color: #101828;
  10. }
  11. .form {
  12. position: relative;
  13. padding: 12px 64px;
  14. background-color: #fff;
  15. }
  16. .dataSourceTypeList {
  17. @apply flex items-center mb-8;
  18. }
  19. .dataSourceItem {
  20. @apply box-border relative shrink-0 flex items-center mr-3 p-3 h-14 bg-white rounded-xl cursor-pointer;
  21. border: 0.5px solid #EAECF0;
  22. box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  23. font-weight: 500;
  24. font-size: 14px;
  25. line-height: 20px;
  26. color: #101828;
  27. }
  28. .dataSourceItem:hover {
  29. background-color: #f5f8ff;
  30. border: 0.5px solid #B2CCFF;
  31. box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  32. }
  33. .dataSourceItem.active {
  34. background-color: #f5f8ff;
  35. border: 1.5px solid #528BFF;
  36. box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
  37. }
  38. .dataSourceItem.disabled {
  39. background-color: #f9fafb;
  40. border: 0.5px solid #EAECF0;
  41. box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  42. cursor: default;
  43. }
  44. .dataSourceItem.disabled:hover {
  45. background-color: #f9fafb;
  46. border: 0.5px solid #EAECF0;
  47. box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  48. }
  49. .comingTag {
  50. @apply flex justify-center items-center bg-white;
  51. position: absolute;
  52. right: 8px;
  53. top: -10px;
  54. padding: 1px 6px;
  55. height: 20px;
  56. border: 1px solid #E0EAFF;
  57. border-radius: 6px;
  58. font-weight: 500;
  59. font-size: 12px;
  60. line-height: 18px;
  61. color: #444CE7;
  62. }
  63. .datasetIcon {
  64. @apply flex mr-2 w-8 h-8 rounded-lg bg-center bg-no-repeat;
  65. background-color: #F5FAFF;
  66. background-image: url(../assets/file.svg);
  67. background-size: 16px;
  68. border: 0.5px solid #D1E9FF;
  69. }
  70. .dataSourceItem:active .datasetIcon,
  71. .dataSourceItem:hover .datasetIcon {
  72. background-color: #F5F8FF;
  73. border: 0.5px solid #E0EAFF;
  74. }
  75. .datasetIcon.notion {
  76. background-image: url(../assets/notion.svg);
  77. background-size: 20px;
  78. }
  79. .datasetIcon.web {
  80. background-image: url(../assets/web.svg);
  81. }
  82. .submitButton {
  83. width: 120px;
  84. }
  85. .dividerLine {
  86. margin: 32px 0;
  87. max-width: 640px;
  88. height: 1px;
  89. background-color: #eaecf0;
  90. }
  91. .OtherCreationOption {
  92. @apply flex items-center cursor-pointer;
  93. font-weight: 500;
  94. font-size: 13px;
  95. line-height: 18px;
  96. color: #155EEF;
  97. }
  98. .OtherCreationOption::before {
  99. content: '';
  100. display: block;
  101. margin-right: 4px;
  102. width: 16px;
  103. height: 16px;
  104. background: center no-repeat url(../assets/folder-plus.svg);
  105. background-size: contain;
  106. }
  107. .notionConnectionTip {
  108. display: flex;
  109. flex-direction: column;
  110. align-items: flex-start;
  111. padding: 24px;
  112. max-width: 640px;
  113. background: #F9FAFB;
  114. border-radius: 16px;
  115. }
  116. .notionIcon {
  117. display: flex;
  118. padding: 12px;
  119. width: 48px;
  120. height: 48px;
  121. background: #fff center no-repeat url(../assets/notion.svg);
  122. background-size: 24px;
  123. border: 0.5px solid #EAECF5;
  124. box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  125. border-radius: 12px;
  126. }
  127. .notionConnectionTip .title {
  128. position: relative;
  129. margin: 24px 0 4px;
  130. font-style: normal;
  131. font-weight: 600;
  132. font-size: 16px;
  133. line-height: 24px;
  134. color: #374151;
  135. }
  136. .notionConnectionTip .title::after {
  137. content: '';
  138. position: absolute;
  139. top: -6px;
  140. right: -12px;
  141. width: 16px;
  142. height: 16px;
  143. background: center no-repeat url(../assets/Icon-3-dots.svg);
  144. background-size: contain;
  145. }
  146. .notionConnectionTip .tip {
  147. margin-bottom: 20px;
  148. font-style: normal;
  149. font-weight: 400;
  150. font-size: 13px;
  151. line-height: 18px;
  152. color: #6B7280;
  153. }