细节修改

This commit is contained in:
2024-05-30 16:34:29 +08:00
parent 615fe82be5
commit d3ddb47eae
6 changed files with 1105 additions and 763 deletions

View File

@@ -147,6 +147,9 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
.mgl0 {
margin-left: 0 !important;
}
.mgl10 {
margin-left: 10px;
}
.mgr5 {
margin-right: 5px;
}
@@ -181,4 +184,11 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
position: sticky;
top: 0;
z-index: 10;
}
.ellipsis-multiline {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 定义显示的行数 */
overflow: hidden;
text-overflow: ellipsis;
}