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