Path: blob/master/sites/tiktok/vendor/perfect-scrollbar/perfect-scrollbar.css
740 views
/*1* Container style2*/3.ps {4overflow: hidden !important;5overflow-anchor: none;6-ms-overflow-style: none;7touch-action: auto;8-ms-touch-action: auto;9}1011/*12* Scrollbar rail styles13*/14.ps__rail-x {15display: none;16opacity: 0;17transition: background-color .2s linear, opacity .2s linear;18-webkit-transition: background-color .2s linear, opacity .2s linear;19height: 15px;20/* there must be 'bottom' or 'top' for ps__rail-x */21bottom: 0px;22/* please don't change 'position' */23position: absolute;24}2526.ps__rail-y {27display: none;28opacity: 0;29transition: background-color .2s linear, opacity .2s linear;30-webkit-transition: background-color .2s linear, opacity .2s linear;31width: 15px;32/* there must be 'right' or 'left' for ps__rail-y */33right: 0;34/* please don't change 'position' */35position: absolute;36}3738.ps--active-x > .ps__rail-x,39.ps--active-y > .ps__rail-y {40display: block;41background-color: transparent;42}4344.ps:hover > .ps__rail-x,45.ps:hover > .ps__rail-y,46.ps--focus > .ps__rail-x,47.ps--focus > .ps__rail-y,48.ps--scrolling-x > .ps__rail-x,49.ps--scrolling-y > .ps__rail-y {50opacity: 0.6;51}5253.ps__rail-x:hover,54.ps__rail-y:hover,55.ps__rail-x:focus,56.ps__rail-y:focus {57background-color: #eee;58opacity: 0.9;59}6061/*62* Scrollbar thumb styles63*/64.ps__thumb-x {65background-color: #aaa;66border-radius: 6px;67transition: background-color .2s linear, height .2s ease-in-out;68-webkit-transition: background-color .2s linear, height .2s ease-in-out;69height: 6px;70/* there must be 'bottom' for ps__thumb-x */71bottom: 2px;72/* please don't change 'position' */73position: absolute;74}7576.ps__thumb-y {77background-color: #aaa;78border-radius: 6px;79transition: background-color .2s linear, width .2s ease-in-out;80-webkit-transition: background-color .2s linear, width .2s ease-in-out;81width: 6px;82/* there must be 'right' for ps__thumb-y */83right: 2px;84/* please don't change 'position' */85position: absolute;86}8788.ps__rail-x:hover > .ps__thumb-x,89.ps__rail-x:focus > .ps__thumb-x {90background-color: #999;91height: 11px;92}9394.ps__rail-y:hover > .ps__thumb-y,95.ps__rail-y:focus > .ps__thumb-y {96background-color: #999;97width: 11px;98}99100/* MS supports */101@supports (-ms-overflow-style: none) {102.ps {103overflow: auto !important;104}105}106107@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {108.ps {109overflow: auto !important;110}111}112113114