playbook_ui 14.11.0.pre.rc.8 → 14.11.0.pre.rc.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_table/styles/_scroll.scss +20 -0
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aefd2dc62ce8d5f358bb5c325c9ac6e099ee2bb2a4c108877ab2e8be72a7c47f
|
4
|
+
data.tar.gz: f84395c2ee1cfe8622263ff19a0d3bf9b788a3d4a97290d9de4d38e3770f6c11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84331e67fe266fad9d8b17795fa1e5920bab34aa09f6bc212a3e0c089f50078afdda6ce805f904da8a13888edf31f4ed6164f7b82b6ba01eef5d1b217bf2ba05
|
7
|
+
data.tar.gz: 2379cc5a173917851046f109c9d3dce2123b754c32aa56961cf134ca6a1f96889c6c632609b925f396a3c8794ffcd789202e6f61631ec5e23afd6db58ea713a4
|
@@ -4,6 +4,26 @@
|
|
4
4
|
display: block;
|
5
5
|
overflow-x: scroll;
|
6
6
|
|
7
|
+
// hides duplicate scroll bar for those that see two (byproduct of repeated table-responsive-scroll class
|
8
|
+
// hides outer scroll bar in chrome and safari
|
9
|
+
&:not(.table-responsive-scroll .table-responsive-scroll) {
|
10
|
+
&::-webkit-scrollbar {
|
11
|
+
height: 0px;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
// hides outer scroll bar in firefox
|
15
|
+
@supports (scrollbar-width: none) {
|
16
|
+
scrollbar-width: none;
|
17
|
+
.pb_table {
|
18
|
+
overflow-x: auto;
|
19
|
+
scrollbar-width: auto;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
// ensures visible inner scroll bar can scroll
|
23
|
+
.pb_table {
|
24
|
+
overflow-x: auto;
|
25
|
+
}
|
26
|
+
|
7
27
|
// Responsive Styles
|
8
28
|
@media (max-width: 1600px) {
|
9
29
|
&[class*="table-responsive-scroll"] {
|