2024-03-05 19:28:44 +08:00
|
|
|
.chunkText() {
|
|
|
|
|
em {
|
|
|
|
|
color: red;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
caption {
|
|
|
|
|
color: @blurBackground;
|
2024-03-26 14:51:34 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
line-height: 20px;
|
2024-03-05 19:28:44 +08:00
|
|
|
font-weight: 600;
|
2024-03-26 14:51:34 +08:00
|
|
|
margin-bottom: 6px;
|
2024-03-05 19:28:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
th {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: @blurBackground;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td:hover {
|
|
|
|
|
background: @blurBackgroundHover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr:nth-child(even) {
|
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-07 19:13:16 +08:00
|
|
|
|
|
|
|
|
.pointerCursor() {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2024-04-19 16:55:23 +08:00
|
|
|
|
|
|
|
|
.clearCardBody() {
|
|
|
|
|
:global {
|
|
|
|
|
.ant-card-body {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-30 18:43:26 +08:00
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|