mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-31 21:13:49 +08:00
### What problem does this PR solve? Feat: Add FormDrawer to agent page. #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
22 lines
380 B
Plaintext
22 lines
380 B
Plaintext
@lightBackgroundColor: rgba(150, 150, 150, 0.07);
|
|
@darkBackgroundColor: rgba(150, 150, 150, 0.12);
|
|
|
|
.caseCard {
|
|
background-color: @lightBackgroundColor;
|
|
}
|
|
|
|
.conditionCard {
|
|
background-color: @darkBackgroundColor;
|
|
}
|
|
|
|
.elseCase {
|
|
background-color: @lightBackgroundColor;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.addButton {
|
|
color: rgb(22, 119, 255);
|
|
font-weight: 600;
|
|
}
|