Merge pull request #392 from cemalgnlts/patch-1

Remove the hover effect for inactive sash classes.
This commit is contained in:
mathuo 2023-11-23 22:27:17 +00:00 committed by GitHub
commit ef70ea236d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,12 +113,12 @@
-ms-user-select: none; // IE 10 and IE 11
touch-action: none;
&:active {
&:not(.disabled):active {
transition: background-color 0.1s ease-in-out;
background-color: var(--dv-active-sash-color, transparent);
}
&:hover {
&:not(.disabled):hover {
background-color: var(--dv-active-sash-color, transparent);
transition: background-color 0.1s ease-in-out;
transition-delay: 0.5s;