FIX: Some bug in modelinfo webpage

Change-Id: I182fd0006f92975018012cb52a7093373153f80e
(cherry picked from commit c8341df9b548c0eed8769cb6b6dc80aab10b8827)
This commit is contained in:
zorro.zhang 2023-03-06 20:03:34 +08:00 committed by Lane.Wei
parent 61b271f379
commit 223291452b
4 changed files with 45 additions and 11 deletions

View file

@ -44,6 +44,27 @@ body
display: none;
}
.ZScrol::-webkit-scrollbar {/*滚动条整体样式*/
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
padding: 2px;
}
.ZScrol::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 6px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background-color: #AAAAAA;
}
.ZScrol::-webkit-scrollbar-track {/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
border-radius: 10px;
background: #EDEDED;
}
.TopBottomBar
{
height: 24px;
@ -51,7 +72,7 @@ body
.FloorBottomBar
{
height: 300px;
height: 100px;
}