ragflow/web/src/less/mixins.less
balibabu e5d3ab0332
feat: API access key management #2846 (#2865)
### What problem does this PR solve?

feat: API access key management #2846
feat: Render markdown file with remark-loader #2846

### 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):
2024-10-16 15:57:39 +08:00

77 lines
1.1 KiB
Text

.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: #f2f2f2;
}
}
.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;
}