mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-24 23:46:52 +08:00
### What problem does this PR solve? Fix: In the dark night theme, the message input box is not displayed correctly. #6950 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
38 lines
633 B
Plaintext
38 lines
633 B
Plaintext
.messageInputWrapper {
|
|
margin-right: 20px;
|
|
padding: '0px 0px 10px 0px';
|
|
border: 1px solid #d9d9d9;
|
|
&:hover {
|
|
border-color: #40a9ff;
|
|
box-shadow: #40a9ff;
|
|
}
|
|
border-radius: 8px;
|
|
:global(.ant-input-affix-wrapper) {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
}
|
|
|
|
.documentCard {
|
|
:global(.ant-card-body) {
|
|
padding: 10px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
}
|
|
.listWrapper {
|
|
padding: 0 10px;
|
|
overflow: auto;
|
|
max-height: 170px;
|
|
width: 100%;
|
|
}
|
|
.inputWrapper {
|
|
border-radius: 8px;
|
|
}
|
|
.deleteIcon {
|
|
position: absolute;
|
|
right: -4px;
|
|
top: -4px;
|
|
color: #d92d20;
|
|
}
|