Sha256: 642ee5389d78bb1e14fa9cb3bc9cb91f174d742151e5893d3a1a786cb9ab0d09
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
// stylelint-disable declaration-no-important, property-no-vendor-prefix .ps { overflow: hidden !important; -ms-touch-action: auto; touch-action: auto; -ms-overflow-style: none; overflow-anchor: none; } .ps__rail-x { position: absolute; bottom: 0; display: none; height: 15px; opacity: 0; transition: background-color .2s linear, opacity .2s linear; } .ps__rail-y { position: absolute; right: 0; display: none; width: 15px; opacity: 0; transition: background-color .2s linear, opacity .2s linear; } .ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y { display: block; background-color: transparent; } .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y, .ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y { opacity: .6; } .ps__rail-x:hover, .ps__rail-y:hover, .ps__rail-x:focus, .ps__rail-y:focus { background-color: #eee; opacity: .9; } /* * Scrollbar thumb styles */ .ps__thumb-x { position: absolute; bottom: 2px; height: 6px; background-color: #aaa; border-radius: 6px; transition: background-color .2s linear, height .2s ease-in-out; } .ps__thumb-y { position: absolute; right: 2px; width: 6px; background-color: #aaa; border-radius: 6px; transition: background-color .2s linear, width .2s ease-in-out; } .ps__rail-x:hover > .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x { height: 11px; background-color: #999; } .ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y { width: 11px; background-color: #999; } @supports (-ms-overflow-style: none) { .ps { overflow: auto !important; } } @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .ps { overflow: auto !important; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
anchor_ui-sprockets-5.2.0.1 | app/assets/stylesheets/coreui/vendors/_perfect-scrollbar.scss |