mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Add tooltip to clean_html item #2908 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
45 lines
764 B
Plaintext
45 lines
764 B
Plaintext
.editableRow {
|
|
:global(.editable-cell) {
|
|
position: relative;
|
|
}
|
|
|
|
:global(.editable-cell-value-wrap) {
|
|
padding: 5px 12px;
|
|
cursor: pointer;
|
|
height: 30px !important;
|
|
}
|
|
&:hover {
|
|
:global(.editable-cell-value-wrap) {
|
|
padding: 4px 11px;
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dynamicParameterVariable {
|
|
background-color: #ebe9e9;
|
|
:global(.ant-collapse-content) {
|
|
background-color: #f6f6f6;
|
|
}
|
|
:global(.ant-collapse-content-box) {
|
|
padding: 0 !important;
|
|
}
|
|
margin-bottom: 20px;
|
|
.title {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
.variableType {
|
|
width: 30%;
|
|
}
|
|
.variableValue {
|
|
flex: 1;
|
|
}
|
|
|
|
.addButton {
|
|
color: rgb(22, 119, 255);
|
|
font-weight: 600;
|
|
}
|
|
}
|