improve css resizer style

This commit is contained in:
lxsang 2021-03-17 21:50:03 +01:00
parent 26e5e9bb53
commit 26a35a6c70
4 changed files with 10 additions and 1 deletions

Binary file not shown.

View File

@ -923,7 +923,7 @@ namespace OS {
if (event.shiftKey) { if (event.shiftKey) {
fnk += "SHIFT"; fnk += "SHIFT";
} }
console.log(fnk, c); //console.log(fnk, c);
if (fnk == "") { if (fnk == "") {
return; return;
} }

View File

@ -5,4 +5,9 @@ afx-resizer.vertical {
afx-resizer.horizontal { afx-resizer.horizontal {
background-color: transparent; background-color: transparent;
border-left: 1px solid #262626; border-left: 1px solid #262626;
}
afx-resizer.horizontal:hover, afx-resizer.vertical:hover
{
background-color: #116cd6;
} }

View File

@ -5,4 +5,8 @@ afx-resizer.vertical {
afx-resizer.horizontal { afx-resizer.horizontal {
background-color: transparent; background-color: transparent;
border-left: 1px solid #cbcbcb; border-left: 1px solid #cbcbcb;
}
afx-resizer.horizontal:hover, afx-resizer.vertical:hover
{
background-color: #116cd6;
} }