canvasxpress 60.2.0 → 60.3.0
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.
- package/package.json +1 -1
- package/src/canvasXpress.css +28 -3
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -217,6 +217,10 @@ svg.cX-DataFilter-Toolbar-ImageNB {
|
|
|
217
217
|
margin: 5px 8px 0px 0px !important;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
+
svg > * {
|
|
221
|
+
pointer-events: none;
|
|
222
|
+
}
|
|
223
|
+
|
|
220
224
|
/*****************
|
|
221
225
|
* SVG Border *
|
|
222
226
|
*****************/
|
|
@@ -812,6 +816,14 @@ span.cX-bin::selection {
|
|
|
812
816
|
border: 1px var(--cx-border-style) var(--cx-datatable-border-color) !important;
|
|
813
817
|
}
|
|
814
818
|
|
|
819
|
+
.customizerRightItem * {
|
|
820
|
+
pointer-events: none;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.customizerRightItem :first-child input:first-child {
|
|
824
|
+
pointer-events: auto;
|
|
825
|
+
}
|
|
826
|
+
|
|
815
827
|
.customizerRightItemTop {
|
|
816
828
|
grid-area: 1 / 1 / 2 / 2;
|
|
817
829
|
padding-top: 5px;
|
|
@@ -968,6 +980,15 @@ span.cX-bin::selection {
|
|
|
968
980
|
border-top: 1px var(--cx-border-style) var(--cx-datatable-border-color) !important;
|
|
969
981
|
}
|
|
970
982
|
|
|
983
|
+
.customizerRightItemLauncher *,
|
|
984
|
+
.customizerRightItemLauncherNB * {
|
|
985
|
+
pointer-events: none;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.customizerRightItemLauncherNB > :last-child input:first-child {
|
|
989
|
+
pointer-events: auto;
|
|
990
|
+
}
|
|
991
|
+
|
|
971
992
|
.customizerRightItemLauncherNB {
|
|
972
993
|
display: grid;
|
|
973
994
|
grid-template-columns: 1fr 6fr;
|
|
@@ -2549,6 +2570,7 @@ a.cX-DataTable-Cell-Header-Menu {
|
|
|
2549
2570
|
display: flex;
|
|
2550
2571
|
padding-left: 1px;
|
|
2551
2572
|
top: 0;
|
|
2573
|
+
right: 8px;
|
|
2552
2574
|
}
|
|
2553
2575
|
|
|
2554
2576
|
div.cX-DataTable-Cell a.cX-DataTable-Cell-Header-Menu {
|
|
@@ -2573,6 +2595,7 @@ div.cX-DataTable-Cell-Header-Filter {
|
|
|
2573
2595
|
position: absolute;
|
|
2574
2596
|
top: 50%;
|
|
2575
2597
|
transform: translateY(-50%);
|
|
2598
|
+
right: 18px;
|
|
2576
2599
|
}
|
|
2577
2600
|
|
|
2578
2601
|
div.cX-DataTable-Cell div.cX-DataTable-Cell-Header-Filter {
|
|
@@ -2683,6 +2706,8 @@ div.cX-DataTable-Cell-Link-Active {
|
|
|
2683
2706
|
text-decoration: underline var(--cx-border);
|
|
2684
2707
|
text-underline-offset: 2px;
|
|
2685
2708
|
cursor: pointer;
|
|
2709
|
+
display: flex;
|
|
2710
|
+
align-items: center;
|
|
2686
2711
|
}
|
|
2687
2712
|
|
|
2688
2713
|
div.cX-DataTable-Cell-Active,
|
|
@@ -3568,12 +3593,12 @@ li.CanvasXpressListItemActive {
|
|
|
3568
3593
|
}
|
|
3569
3594
|
|
|
3570
3595
|
li.CanvasXpressListItemActive > :first-child,
|
|
3571
|
-
li.CanvasXpressListItemActive > :first-child svg:first-child {
|
|
3596
|
+
li.CanvasXpressListItemActive > :first-child > svg:first-child {
|
|
3572
3597
|
pointer-events: none;
|
|
3573
3598
|
}
|
|
3574
3599
|
|
|
3575
|
-
li.CanvasXpressListItemActive > :first-child div:last-child,
|
|
3576
|
-
li.CanvasXpressListItemActive > :first-child input:last-child {
|
|
3600
|
+
li.CanvasXpressListItemActive > :first-child > div:last-child,
|
|
3601
|
+
li.CanvasXpressListItemActive > :first-child > input:last-child {
|
|
3577
3602
|
pointer-events: auto;
|
|
3578
3603
|
}
|
|
3579
3604
|
|