Use prettier for SCSS (#3895)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / perfectScrollbar.scss
1 /* PerfectScrollbar plugin */
2 .ps-container {
3 &:hover > .ps-scrollbar-y-rail > .ps-scrollbar-y {
4 background-color: rgba(102, 102, 102, 0.6);
5 }
6
7 &.ps-active-y > .ps-scrollbar-y-rail {
8 display: block;
9 }
10
11 > .ps-scrollbar-y-rail {
12 background-color: rgba(102, 102, 102, 0);
13 border-radius: 2px;
14 bottom: 0;
15 display: none;
16 position: absolute;
17 right: 2px;
18 transition: background-color 0.24s linear;
19 width: 6px;
20
21 &:hover {
22 background-color: rgba(102, 102, 102, 0.3);
23 }
24
25 > .ps-scrollbar-y {
26 background-color: rgba(102, 102, 102, 0);
27 border-radius: 2px;
28 position: relative;
29 transition: background-color 0.24s linear;
30 }
31 }
32 }