dify/web/app/components/datasets/create/step-one/index.module.css
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

67 lines
1.8 KiB
CSS

@reference "../../../../styles/globals.css";
.stepHeader {
padding: 42px 64px 12px 0;
}
.form {
position: relative;
padding: 12px 64px;
}
.dataSourceItem {
@apply relative flex h-14 w-full cursor-pointer items-center rounded-xl border border-components-option-card-option-border bg-components-option-card-option-bg p-3 text-text-secondary;
}
.dataSourceItem:hover {
@apply border border-components-option-card-option-border-hover bg-components-option-card-option-bg-hover shadow-xs shadow-shadow-shadow-3;
}
.dataSourceItem.active {
@apply border border-components-option-card-option-selected-border bg-components-option-card-option-selected-bg ring-[0.5px] ring-components-option-card-option-selected-border;
}
.dataSourceItem.disabled,
.dataSourceItem.disabled:hover {
@apply cursor-not-allowed border-[0.5px] border-components-option-card-option-border bg-components-option-card-option-bg text-text-disabled shadow-none;
}
.comingTag {
@apply flex items-center justify-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 mr-2 flex h-8 w-8 shrink-0 rounded-lg border-[0.5px] border-divider-regular bg-text-primary-on-surface bg-center bg-no-repeat 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;
}