perfect-scrollbar-rails 0.6.9 → 0.6.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e5ce5229e248aa1e4a6cd4b65f81fc4f6b5c118
|
4
|
+
data.tar.gz: 1e2ab74e7464a5688d07aa8bf9b6295b6517cbda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e72c867fd0d8cbc6ec32b61e2a3b42e9db0731da0b19c55aa47c0da83099ad015c2d60e896d1cef148bafa740e22b6cdf40ea24abd2afd57c3d99c5794fd47f
|
7
|
+
data.tar.gz: 8c286701fc6d4390b65c10357251825f1be80b3fec26cd44e1c72ece13854df95731e108e5b1e3b70c37833509d5e25a34867d685e2cee7f019c654fa5a66ee7
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/* perfect-scrollbar v0.6.
|
1
|
+
/* perfect-scrollbar v0.6.10 */
|
2
2
|
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
3
3
|
'use strict';
|
4
4
|
|
@@ -1,7 +1,15 @@
|
|
1
|
-
/* perfect-scrollbar v0.6.
|
1
|
+
/* perfect-scrollbar v0.6.10 */
|
2
2
|
.ps-container {
|
3
3
|
-ms-touch-action: none;
|
4
|
-
|
4
|
+
touch-action: none;
|
5
|
+
overflow: hidden !important;
|
6
|
+
-ms-overflow-style: none; }
|
7
|
+
@supports (-ms-overflow-style: none) {
|
8
|
+
.ps-container {
|
9
|
+
overflow: auto !important; } }
|
10
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
11
|
+
.ps-container {
|
12
|
+
overflow: auto !important; } }
|
5
13
|
.ps-container.ps-active-x > .ps-scrollbar-x-rail,
|
6
14
|
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
|
7
15
|
display: block;
|