Improvements to reduce repainting (#5876)

This commit is contained in:
Charles Hacskaylo
2023-03-17 13:07:57 -07:00
committed by GitHub
parent 8831b75c5d
commit a3c5450205
36 changed files with 211 additions and 163 deletions

View File

@@ -244,11 +244,10 @@
display: flex;
flex-direction: column;
flex: 0 0 ($margin * 2) + $size;
transition: $transOut;
&:before {
// The visible resize line
background: $editUIColor;
background-color: $editUIColor;
content: '';
display: block;
flex: 1 1 auto;
@@ -270,10 +269,9 @@
}
&:hover {
transition: $transOut;
&:before {
// The visible resize line
background: $editUIColorHov;
background-color: $editUIColorHov;
}
}
}