删除所有console.log输出,优化评查结果的表格的显示,添加新的页码获取逻辑
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
max-width: 320px;
|
||||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||||
pointer-events: none;
|
||||
overflow: visible; /* 确保容器不显示滚动条 */
|
||||
}
|
||||
|
||||
.tooltip-visible {
|
||||
@@ -23,11 +24,57 @@
|
||||
|
||||
.tooltip-content {
|
||||
position: relative;
|
||||
padding: 0.75rem 1rem;
|
||||
padding: 0.75rem 0.5rem 0.75rem 0.75rem;
|
||||
border-radius: 0.375rem;
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.5;
|
||||
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
overflow: visible; /* 确保外层容器不显示滚动条 */
|
||||
}
|
||||
|
||||
.tooltip-content-inner {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 可滚动的提示框内容样式 */
|
||||
.tooltip-scrollable {
|
||||
overflow-y: auto;
|
||||
scrollbar-width: none; /* Firefox */
|
||||
scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
|
||||
/* 创建一个合适的内边距来容纳自定义滚动条 */
|
||||
padding-right: 6px;
|
||||
}
|
||||
|
||||
/* 隐藏默认滚动条 */
|
||||
.tooltip-scrollable::-webkit-scrollbar {
|
||||
width: 3px;
|
||||
}
|
||||
|
||||
.tooltip-scrollable::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.tooltip-scrollable::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.tooltip-scrollable:hover::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* 深色主题滚动条样式 */
|
||||
.tooltip-dark .tooltip-scrollable::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.tooltip-dark .tooltip-scrollable:hover::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
.tooltip-dark .tooltip-scrollable {
|
||||
scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
|
||||
}
|
||||
|
||||
.tooltip-arrow {
|
||||
@@ -159,6 +206,8 @@
|
||||
|
||||
.tooltip-body {
|
||||
padding: 0.75rem 1rem;
|
||||
max-height: inherit;
|
||||
overflow-y: inherit;
|
||||
}
|
||||
|
||||
.tooltip-footer {
|
||||
|
||||
Reference in New Issue
Block a user