canvasxpress-cli 59.8.0 → 60.0.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 +19 -4
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -751,6 +751,11 @@ span.cX-bin::selection {
|
|
|
751
751
|
background: rgb(255, 255, 255);
|
|
752
752
|
}
|
|
753
753
|
|
|
754
|
+
.customizerLeftItem:hover > *,
|
|
755
|
+
.customizerLeftItemActive > * {
|
|
756
|
+
pointer-events: none;
|
|
757
|
+
}
|
|
758
|
+
|
|
754
759
|
.customizerLeftItemNB:hover svg {
|
|
755
760
|
border-color: var(--cx-background-border-hover-color) !important;
|
|
756
761
|
background: var(--cx-background-hover-color) !important;
|
|
@@ -3556,6 +3561,16 @@ li.CanvasXpressListItemActive {
|
|
|
3556
3561
|
text-align: left;
|
|
3557
3562
|
}
|
|
3558
3563
|
|
|
3564
|
+
li.CanvasXpressListItemActive > :first-child,
|
|
3565
|
+
li.CanvasXpressListItemActive > :first-child svg:first-child {
|
|
3566
|
+
pointer-events: none;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
li.CanvasXpressListItemActive > :first-child div:last-child,
|
|
3570
|
+
li.CanvasXpressListItemActive > :first-child input:last-child {
|
|
3571
|
+
pointer-events: auto;
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3559
3574
|
li.CanvasXpressListItemScrollTop {
|
|
3560
3575
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAFCAYAAACw/UeDAAAARUlEQVR42mNkQAMXL178z0Ah0NfXZ0Tmo3BAFkhLS+M1IDw8kmHlyuV41Tx9+hTFIjiDWAtggBSLGMmxgFSLGKkRB4QAAILWJXgE49MrAAAAAElFTkSuQmCC);
|
|
3561
3576
|
background-repeat: no-repeat;
|
|
@@ -3632,7 +3647,7 @@ a.CanvasXpressListItemA {
|
|
|
3632
3647
|
border-width: 0px 1px;
|
|
3633
3648
|
color: var(--cx-font-color);
|
|
3634
3649
|
cursor: pointer;
|
|
3635
|
-
display:
|
|
3650
|
+
display: flex;
|
|
3636
3651
|
font: var(--cx-x-large-font);
|
|
3637
3652
|
line-height: 24px;
|
|
3638
3653
|
list-style: none;
|
|
@@ -3651,7 +3666,7 @@ a.CanvasXpressListItemAActive {
|
|
|
3651
3666
|
border-width: 0px 1px;
|
|
3652
3667
|
color: var(--cx-font-color);
|
|
3653
3668
|
cursor: pointer;
|
|
3654
|
-
display:
|
|
3669
|
+
display: flex;
|
|
3655
3670
|
font: var(--cx-x-large-font);
|
|
3656
3671
|
line-height: 24px;
|
|
3657
3672
|
list-style: none;
|
|
@@ -3671,7 +3686,7 @@ a.CanvasXpressListItemAArrow {
|
|
|
3671
3686
|
border-width: 0px 1px;
|
|
3672
3687
|
color: var(--cx-font-color);
|
|
3673
3688
|
cursor: pointer;
|
|
3674
|
-
display:
|
|
3689
|
+
display: flex;
|
|
3675
3690
|
font: var(--cx-x-large-font);
|
|
3676
3691
|
line-height: 24px;
|
|
3677
3692
|
list-style: none;
|
|
@@ -3691,7 +3706,7 @@ a.CanvasXpressListItemAArrowActive {
|
|
|
3691
3706
|
border-width: 0px 1px;
|
|
3692
3707
|
color: var(--cx-font-color);
|
|
3693
3708
|
cursor: pointer;
|
|
3694
|
-
display:
|
|
3709
|
+
display: flex;
|
|
3695
3710
|
font: var(--cx-x-large-font);
|
|
3696
3711
|
line-height: 24px;
|
|
3697
3712
|
list-style: none;
|