enhance(ux): incorrect tab focus for the right sidebar resizer separator

enhance/e2e-browser
charlie 2024-04-01 17:01:25 +08:00
parent 0b9409f035
commit f6f4cfa1b9
1 changed files with 8 additions and 18 deletions

View File

@ -602,27 +602,17 @@
user-select: none;
.resizer {
@apply absolute top-0 bottom-0;
touch-action: none;
left: 1px;
width: 3px;
user-select: none;
cursor: col-resize !important;
transition: background-color 300ms;
transition-delay: 300ms;
z-index: 1000;
&:hover,
&:focus,
&:active {
@apply bg-primary/90;
}
@apply absolute top-0 bottom-0 touch-none left-[1px] w-[3px] select-none !bg-primary;
@apply !cursor-col-resize hover:bg-primary/90 focus:bg-primary/90 active:bg-primary/90;
@apply z-[1000] delay-300 transition-[background-color] duration-300;
}
&.closed {
width: 0 !important;
@apply !w-0;
.resizer {
@apply hidden;
}
}
&.open {