Fix Bug #568: 修复门诊日结页面排版混乱 - 移除overflow裁剪并调整标签宽度
根因: 1. .report-item的overflow:hidden导致内容被裁剪,显示不全 2. .label宽度120px对于较长标签(如"实际现金收入:")显示空间不足 3. 响应式断点中.span-2在2列布局下错误地设为span 1 修复: 1. 移除.report-item的overflow:hidden,让内容自然显示 2. 将.label宽度从120px增加到140px 3. 修正1200px断点下.span-2为span 2(保持跨2列) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -331,7 +331,7 @@ getPharmacyCabinetLists();
|
|||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
}
|
}
|
||||||
.span-2 {
|
.span-2 {
|
||||||
grid-column: span 1;
|
grid-column: span 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 768px) {
|
@media screen and (max-width: 768px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user