canvasxpress-cli 50.2.30 → 50.4.16
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 +24 -4
- package/src/canvasXpress.js +14169 -13870
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
--cx-background-widgets-color: var(--cx-color-ui-background);
|
|
71
71
|
--cx-background-color: var(--cx-color-widgets);
|
|
72
72
|
--cx-background-hover-color: var(--cx-color-widgets-hover);
|
|
73
|
+
--cx-background-border-hover-color: var(--cx-color-white);
|
|
73
74
|
--cx-background-accent-color: var(--cx-color-widgets-hover);
|
|
74
75
|
--cx-background-contrast-color: var(--cx-background-color);
|
|
75
76
|
/* Border */
|
|
@@ -460,7 +461,10 @@ span.cX-bin::selection {
|
|
|
460
461
|
.customizerLeftPanelTop,
|
|
461
462
|
.customizerLeftPanelBottom {
|
|
462
463
|
background: var(--cx-background-color);
|
|
463
|
-
border: var(--cx-border) !important;
|
|
464
|
+
border-top: var(--cx-border) !important;
|
|
465
|
+
border-left: var(--cx-border) !important;
|
|
466
|
+
border-bottom: var(--cx-border) !important;
|
|
467
|
+
border-right: none !important;
|
|
464
468
|
}
|
|
465
469
|
|
|
466
470
|
.customizerLeftPanelTop {
|
|
@@ -505,7 +509,8 @@ span.cX-bin::selection {
|
|
|
505
509
|
*/
|
|
506
510
|
|
|
507
511
|
.customizerLeftItem,
|
|
508
|
-
.customizerLeftItemActive
|
|
512
|
+
.customizerLeftItemActive,
|
|
513
|
+
.customizerLeftItemNB {
|
|
509
514
|
display: grid;
|
|
510
515
|
grid-template-columns: 1fr;
|
|
511
516
|
grid-template-rows: 1fr 4fr;
|
|
@@ -531,6 +536,11 @@ span.cX-bin::selection {
|
|
|
531
536
|
background: rgb(255, 255, 255);
|
|
532
537
|
}
|
|
533
538
|
|
|
539
|
+
.customizerLeftItemNB:hover svg {
|
|
540
|
+
border-color: var(--cx-background-border-hover-color) !important;
|
|
541
|
+
background: var(--cx-background-hover-color) !important;
|
|
542
|
+
}
|
|
543
|
+
|
|
534
544
|
.customizerLeftItemTop {
|
|
535
545
|
grid-area: 1 / 1 / 2 / 2;
|
|
536
546
|
margin: auto;
|
|
@@ -542,12 +552,22 @@ span.cX-bin::selection {
|
|
|
542
552
|
margin: auto;
|
|
543
553
|
}
|
|
544
554
|
|
|
545
|
-
.customizerLeftIcon
|
|
555
|
+
.customizerLeftIcon,
|
|
556
|
+
.customizerLeftIconNB {
|
|
546
557
|
padding: 5px;
|
|
547
|
-
border: var(--cx-border) !important;
|
|
548
558
|
border-radius: 5px;
|
|
549
559
|
}
|
|
550
560
|
|
|
561
|
+
.customizerLeftIconNB {
|
|
562
|
+
border-width: 1px;
|
|
563
|
+
border-style: solid;
|
|
564
|
+
border-color: var(--cx-background-color);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.customizerLeftIcon {
|
|
568
|
+
border: var(--cx-border) !important;
|
|
569
|
+
}
|
|
570
|
+
|
|
551
571
|
/*
|
|
552
572
|
* CanvasXpress Customizer Right Items
|
|
553
573
|
*/
|