mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
feat: Add Skeleton to MessageItem before the backend returns a message and fixed the issue where ChatConfigurationModal displays old data when creating a new dialog (#99)
* feat: fixed the issue where ChatConfigurationModal displays old data when creating a new dialog * feat: Add Skeleton to MessageItem before the backend returns a message
This commit is contained in:
2
web/src/less/index.less
Normal file
2
web/src/less/index.less
Normal file
@ -0,0 +1,2 @@
|
||||
@import './variable.less';
|
||||
@import './mixins.less';
|
||||
31
web/src/less/mixins.less
Normal file
31
web/src/less/mixins.less
Normal file
@ -0,0 +1,31 @@
|
||||
.chunkText() {
|
||||
em {
|
||||
color: red;
|
||||
font-style: normal;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
caption {
|
||||
color: @blurBackground;
|
||||
font-size: 20px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
th {
|
||||
color: #fff;
|
||||
background-color: @blurBackground;
|
||||
}
|
||||
|
||||
td:hover {
|
||||
background: @blurBackgroundHover;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user