mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: build nodes and edges from chat bot dsl #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
62 lines
1006 B
Plaintext
62 lines
1006 B
Plaintext
.flowListWrapper {
|
|
padding: 48px;
|
|
}
|
|
|
|
.topWrapper {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
padding: 0 60px 72px;
|
|
|
|
.title {
|
|
font-family: Inter;
|
|
font-size: 30px;
|
|
font-style: normal;
|
|
font-weight: @fontWeight600;
|
|
line-height: 38px;
|
|
color: rgba(16, 24, 40, 1);
|
|
}
|
|
.description {
|
|
font-family: Inter;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
color: rgba(71, 84, 103, 1);
|
|
}
|
|
|
|
.topButton {
|
|
font-family: Inter;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: @fontWeight600;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.filterButton {
|
|
display: flex;
|
|
align-items: center;
|
|
.topButton();
|
|
}
|
|
}
|
|
.flowCardContainer {
|
|
padding: 0 60px;
|
|
overflow: auto;
|
|
.knowledgeEmpty {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.flowTemplateCard {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selectedFlowTemplateCard {
|
|
background-color: @selectedBackgroundColor;
|
|
}
|
|
|
|
.templatesBox {
|
|
max-height: 500px;
|
|
overflow: auto;
|
|
}
|