Add files via upload

This commit is contained in:
公明
2026-01-24 15:45:10 +08:00
committed by GitHub
parent 6321df417b
commit 42e9ad3bda
5 changed files with 75 additions and 79 deletions
+15 -2
View File
@@ -3273,7 +3273,12 @@ header {
}
.pagination-container {
margin-top: 10px;
margin-top: 0;
}
/* 漏洞管理页面的分页栏间距优化 */
#vulnerability-pagination.pagination-fixed {
margin-top: 12px;
}
/* Skills管理页面分页优化 */
@@ -3310,6 +3315,9 @@ header {
/* 确保底部左右角都是圆角 */
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
/* 添加边框和阴影,使圆角更明显 */
border: 1px solid var(--border-color);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.pagination-fixed .pagination {
@@ -3331,6 +3339,8 @@ header {
/* 确保底部左右角都是圆角 */
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
/* 移除顶部边框,因为外层容器已有边框 */
border-top: none;
}
/* 左侧:信息显示和每页数量选择器 - 更自然的设计 */
@@ -3453,7 +3463,7 @@ header {
white-space: nowrap;
font-weight: 400;
/* 添加圆角设计,四个角都是圆的 */
border-radius: 6px !important;
border-radius: 8px !important;
background: var(--bg-secondary) !important;
border: 1px solid var(--border-color) !important;
display: inline-flex !important;
@@ -7754,6 +7764,7 @@ header {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 0;
}
.vulnerability-card {
@@ -9576,6 +9587,7 @@ header {
/* 限制标题最多显示2行 */
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
@@ -9593,6 +9605,7 @@ header {
/* 限制描述的最大行数,保持卡片整洁 */
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}