Hover scaling now sets width and height on scrollbar to 100% on hover.

This commit is contained in:
Chris Driscol
2016-06-14 23:07:00 -06:00
parent e9d7cc97c8
commit 1b2c853972
2 changed files with 7 additions and 8 deletions
+2 -2
View File
@@ -73,7 +73,7 @@
&:active {
height: map_get($theme, scrollbar-rail-scale-hover) * map_get($theme, scrollbar-x-rail-height);
> .ps-scrollbar-x {
height: map_get($theme, scrollbar-rail-scale-hover) * map_get($theme, scrollbar-x-rail-height);
height: 100%;
}
}
@@ -93,7 +93,7 @@
&:active {
width: map_get($theme, scrollbar-rail-scale-hover) * map_get($theme, scrollbar-y-rail-width);
> .ps-scrollbar-y {
width: map_get($theme, scrollbar-rail-scale-hover) * map_get($theme, scrollbar-y-rail-width);
width: 100%;
}
}