mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-28 11:48:10 +08:00
### What problem does this PR solve? - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Yingfeng <yingfeng.zhang@gmail.com> Co-authored-by: Jin Hai <haijin.chn@gmail.com>
78 lines
1.1 KiB
Plaintext
78 lines
1.1 KiB
Plaintext
.tableCell() {
|
|
padding: 6px 13px;
|
|
border: 1px solid #d1d9e0;
|
|
}
|
|
|
|
.chunkText() {
|
|
em {
|
|
color: red;
|
|
font-style: normal;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
caption {
|
|
color: @blurBackground;
|
|
font-size: 14px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
font-weight: 600;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
th {
|
|
// color: #fff;
|
|
// background-color: @blurBackground;
|
|
.tableCell;
|
|
}
|
|
|
|
td {
|
|
.tableCell;
|
|
}
|
|
|
|
td:hover {
|
|
background: @blurBackgroundHover;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f2f2f22a;
|
|
}
|
|
}
|
|
|
|
.pointerCursor() {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.clearCardBody() {
|
|
:global {
|
|
.ant-card-body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.textEllipsis() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.multipleLineEllipsis(@line) {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: @line;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.linkText() {
|
|
border-radius: 6px;
|
|
padding: 6px 10px;
|
|
background-color: #eff8ff;
|
|
border: 1px;
|
|
}
|