playbook_ui 14.21.0.pre.alpha.PLAY2167advtablenitrorowborderdoubling8098 → 14.21.0.pre.alpha.hotfixscssissue8102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +5 -1
- 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: 23e7a7bd9fcc2c17dd1ce9328a34b67fc307863b3b59fdf6d92509ef9274fbaa
|
4
|
+
data.tar.gz: 60353ca8ec9d062df99e66e72f5503c11935eb899a5ce2a96d467b2e2c5f4880
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1f57bdba3c3a21fb4bffea62d8fa1219c79962d83a67c595203a700e280c4ed0b1f9d78a870f58733f59e6e7a6f1046cb7c339d3eaf0de822971ae0a49c7d56
|
7
|
+
data.tar.gz: a61c16d184f406fd59e0a04919d974d0bad6201f3217f4219c406adb8399ff619eb621d9d6eb90b5f943e13494e3d76e7cabe34eda8fdf0a633359674afabd37
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
-ms-overflow-style: none !important;
|
42
42
|
scrollbar-width: thin !important;
|
43
|
-
scrollbar-color:
|
43
|
+
scrollbar-color: #00000033 transparent !important;
|
44
44
|
}
|
45
45
|
|
46
46
|
[id$="-span"] {
|
@@ -410,6 +410,7 @@
|
|
410
410
|
|
411
411
|
// Make sure all horizontal borders use the default border color
|
412
412
|
tr, th, td {
|
413
|
+
border-top-color: $border_light !important;
|
413
414
|
border-bottom-color: $border_light !important;
|
414
415
|
}
|
415
416
|
|
@@ -562,6 +563,7 @@
|
|
562
563
|
// Sticky Left Columns Styling
|
563
564
|
&[class*="advanced-table-sticky-left-columns"] {
|
564
565
|
overflow-x: scroll;
|
566
|
+
@include scrollbar-styling;
|
565
567
|
.sticky-left {
|
566
568
|
position: sticky !important;
|
567
569
|
z-index: 2;
|
@@ -581,6 +583,7 @@
|
|
581
583
|
&[class*="advanced-table-responsive-scroll"] {
|
582
584
|
overflow-x: auto;
|
583
585
|
width: 100%;
|
586
|
+
@include scrollbar-styling;
|
584
587
|
|
585
588
|
// These are the responsive borders that should NOT inherit the custom color
|
586
589
|
@include advanced-table-sticky-mixin(
|
@@ -630,6 +633,7 @@
|
|
630
633
|
|
631
634
|
// Make sure all horizontal borders use the default border color in dark mode
|
632
635
|
tr, th, td {
|
636
|
+
border-top-color: $border_dark !important;
|
633
637
|
border-bottom-color: $border_dark !important;
|
634
638
|
}
|
635
639
|
|