Remove the hover effect for inactive sash classes.

This commit is contained in:
Cemal Gönültaş 2023-11-16 16:48:00 +03:00 committed by GitHub
parent b17aa24637
commit de88179b26
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;