mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 23:16:58 +08:00
### What problem does this PR solve? Fix: Optimize list display and rename functionality #3221 - Updated the homepage search list display style and added rename functionality - Used the RenameDialog component for rename searches - Optimized list height calculation - Updated the style and layout of related pages - fix issue #9779 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
48 lines
773 B
Plaintext
48 lines
773 B
Plaintext
@import url(./inter.less);
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden; // The content of the DatasetSettings page is too high, which will cause scroll bars to appear on the html tags. Setting the maximum height in DatasetSettings does not work either. I don't understand.
|
|
}
|
|
|
|
body {
|
|
font-family: Inter;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
.ant-app {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.vue-office-excel {
|
|
height: 100%;
|
|
}
|
|
|
|
/* Scroll bar stylings */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: rgb(219, 218, 218);
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #aaaaaa;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #888;
|
|
}
|