File size: 1,116 Bytes
f850783 405c9f9 f850783 405c9f9 31c7dca 405c9f9 31c7dca 405c9f9 f850783 405c9f9 53f091c 405c9f9 657bc8a 7ba250b 8e109c7 f850783 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
.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;
}
|