ENH: Optimize LeftMenu Bar UI

JIRA: none
Change-Id: I4ee0bafcc42582675a2db118cb3be656b950b1ed
This commit is contained in:
zorro.zhang 2025-04-07 12:30:33 +08:00 committed by lane.wei
parent a564ee6a0a
commit a01e19660e
2 changed files with 5 additions and 2 deletions

View File

@ -268,7 +268,7 @@ body
position: absolute;
height: 60px;
width: 12px;
right: 1px;
right: 0px;
top: calc(50% - 30px);
cursor: pointer;
background-repeat: no-repeat;
@ -278,6 +278,7 @@ body
border-top: 1px solid rgba(238, 238, 238, 1);
border-bottom: 1px solid rgba(238, 238, 238, 1);
border-radius: 4px 0px 0px 4px;
z-index: 99;
}
#HideBtn:hover

View File

@ -63,5 +63,7 @@
#HideBtn
{
transform: scaleX(-1);
border-radius: 0px 4px 4px 0px;
border-radius: 0px 4px 4px 0px;
border-left: 0px solid rgba(238, 238, 238, 1);
border-right: 1px solid rgba(238, 238, 238, 1);
}