canvasxpress-cli 52.7.0 → 52.9.4
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 +341 -133
- package/src/canvasXpress.js +3 -3
package/src/canvasXpress.css
CHANGED
|
@@ -61,13 +61,17 @@
|
|
|
61
61
|
--cx-border-style: solid;
|
|
62
62
|
--cx-border-transparent: var(--cx-border-width) var(--cx-border-style) var(--cx-color-transparent);
|
|
63
63
|
/* Font */
|
|
64
|
-
--cx-font-size:
|
|
65
|
-
--cx-
|
|
64
|
+
--cx-small-font-size: 9px;
|
|
65
|
+
--cx-font-size: 11px;
|
|
66
|
+
--cx-large-font-size: 13px;
|
|
67
|
+
--cx-x-large-font-size: 15px;
|
|
66
68
|
--cx-font-color: var(--cx-color-ui-font);
|
|
67
69
|
--cx-font: normal var(--cx-font-size) var(--cx-font-family);
|
|
68
70
|
--cx-large-font: normal var(--cx-large-font-size) var(--cx-font-family);
|
|
71
|
+
--cx-x-large-font: normal var(--cx-x-large-font-size) var(--cx-font-family);
|
|
69
72
|
--cx-font-bold: bold var(--cx-font-size) var(--cx-font-family);
|
|
70
73
|
--cx-font-italic: italic var(--cx-font-size) var(--cx-font-family);
|
|
74
|
+
--cx-small-font-italic: italic var(--cx-small-font-size) var(--cx-font-family);
|
|
71
75
|
/* Background */
|
|
72
76
|
--cx-background-widgets-color: var(--cx-color-ui-background);
|
|
73
77
|
--cx-background-color: var(--cx-color-widgets);
|
|
@@ -77,6 +81,12 @@
|
|
|
77
81
|
--cx-background-contrast-color: var(--cx-background-color);
|
|
78
82
|
/* Border */
|
|
79
83
|
--cx-border: var(--cx-border-width) var(--cx-border-style) var(--cx-color-widgets);
|
|
84
|
+
/* Callouts */
|
|
85
|
+
--cx-callout-size: 8px;
|
|
86
|
+
--cx-callout-radius: 10px;
|
|
87
|
+
--cx-callout-border-width: 1px;
|
|
88
|
+
--cx-callout-background-color: var(--cx-color-ui-background);
|
|
89
|
+
--cx-callout-border-color: var(--cx-color-widgets);
|
|
80
90
|
}
|
|
81
91
|
|
|
82
92
|
*,
|
|
@@ -362,7 +372,7 @@ div.cX-chat-container {
|
|
|
362
372
|
border-radius: 10px;
|
|
363
373
|
background-color: var(--cx-color-extra-light-gray);
|
|
364
374
|
color: var(--cx-font-color);
|
|
365
|
-
font: var(--cx-large-font);
|
|
375
|
+
font: var(--cx-x-large-font);
|
|
366
376
|
display: flex;
|
|
367
377
|
align-items: center;
|
|
368
378
|
}
|
|
@@ -413,7 +423,7 @@ svg.cX-chat-thumbs {
|
|
|
413
423
|
div.cX-LLM-window {
|
|
414
424
|
position: absolute;
|
|
415
425
|
border: 1px solid #555555;
|
|
416
|
-
max-width:
|
|
426
|
+
max-width: 545px;
|
|
417
427
|
overflow: hidden;
|
|
418
428
|
border-radius: 5px;
|
|
419
429
|
background-color: var(--cx-color-extra-light-gray);
|
|
@@ -423,7 +433,7 @@ div.cX-LLM-window {
|
|
|
423
433
|
a.cX-LLM-window-close {
|
|
424
434
|
position: sticky;
|
|
425
435
|
top: 0;
|
|
426
|
-
left:
|
|
436
|
+
left: 500px;
|
|
427
437
|
font-size: xx-large;
|
|
428
438
|
}
|
|
429
439
|
|
|
@@ -582,7 +592,7 @@ span.cX-bin::selection {
|
|
|
582
592
|
z-index: 10001;
|
|
583
593
|
/*height: calc(100% - 5px);*/
|
|
584
594
|
background-color: rgb(255, 255, 255);
|
|
585
|
-
font-family:
|
|
595
|
+
font-family: var(--cx-font-family);
|
|
586
596
|
font-weight: normal;
|
|
587
597
|
}
|
|
588
598
|
|
|
@@ -623,7 +633,7 @@ span.cX-bin::selection {
|
|
|
623
633
|
position: absolute;
|
|
624
634
|
z-index: 10000;
|
|
625
635
|
top: 0px;
|
|
626
|
-
font-family:
|
|
636
|
+
font-family: var(--cx-font-family);
|
|
627
637
|
font-weight: normal;
|
|
628
638
|
}
|
|
629
639
|
|
|
@@ -1438,6 +1448,10 @@ div.CanvasXpressDragLayout {
|
|
|
1438
1448
|
position: absolute;
|
|
1439
1449
|
}
|
|
1440
1450
|
|
|
1451
|
+
/*
|
|
1452
|
+
* Tooltip
|
|
1453
|
+
*/
|
|
1454
|
+
|
|
1441
1455
|
div.CanvasXpressTooltip {
|
|
1442
1456
|
border: 1px solid rgb(83, 105, 255);
|
|
1443
1457
|
border-radius: 5px;
|
|
@@ -1454,91 +1468,7 @@ div.CanvasXpressTooltip {
|
|
|
1454
1468
|
text-align: left;
|
|
1455
1469
|
}
|
|
1456
1470
|
|
|
1457
|
-
div.
|
|
1458
|
-
position: absolute;
|
|
1459
|
-
height: 0;
|
|
1460
|
-
width: 0;
|
|
1461
|
-
background: rgba(255, 255, 255, 0.95);
|
|
1462
|
-
border: 2px solid rgb(83, 105, 255);
|
|
1463
|
-
border-top: none;
|
|
1464
|
-
border-right: none;
|
|
1465
|
-
z-index: 1;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
div.CanvasXpressTooltipArrowLeft:after,
|
|
1469
|
-
div.CanvasXpressTooltipArrowLeft:before {
|
|
1470
|
-
border: solid transparent;
|
|
1471
|
-
right: 0px;
|
|
1472
|
-
content: "";
|
|
1473
|
-
position: absolute;
|
|
1474
|
-
pointer-events: none;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
div.CanvasXpressTooltipArrowLeft:after {
|
|
1478
|
-
border-color: rgba(245, 245, 245, 0);
|
|
1479
|
-
border-right-color: rgb(245, 245, 245);
|
|
1480
|
-
border-width: 8px;
|
|
1481
|
-
margin-top: -8px;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
div.CanvasXpressTooltipArrowLeft:before {
|
|
1485
|
-
border-color: rgba(51, 122, 183, 0);
|
|
1486
|
-
border-right-color: rgb(83, 105, 255);
|
|
1487
|
-
border-width: 9px;
|
|
1488
|
-
margin-top: -9px;
|
|
1489
|
-
}
|
|
1490
|
-
|
|
1491
|
-
div.CanvasXpressTooltipArrowRight {
|
|
1492
|
-
position: absolute;
|
|
1493
|
-
height: 0;
|
|
1494
|
-
width: 0;
|
|
1495
|
-
background: rgba(255, 255, 255, 0.95);
|
|
1496
|
-
border: 2px solid rgb(83, 105, 255);
|
|
1497
|
-
border-top: none;
|
|
1498
|
-
border-left: none;
|
|
1499
|
-
z-index: 1;
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
div.CanvasXpressTooltipArrowRight:after,
|
|
1503
|
-
div.CanvasXpressTooltipArrowRight:before {
|
|
1504
|
-
border: solid transparent;
|
|
1505
|
-
right: 0px;
|
|
1506
|
-
content: "";
|
|
1507
|
-
position: absolute;
|
|
1508
|
-
pointer-events: none;
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
div.CanvasXpressTooltipArrowRight:after {
|
|
1512
|
-
border-color: rgba(245, 245, 245, 0);
|
|
1513
|
-
border-left-color: rgb(245, 245, 245);
|
|
1514
|
-
border-width: 9px;
|
|
1515
|
-
margin-top: -9px;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
div.CanvasXpressTooltipArrowRight:before {
|
|
1519
|
-
border-color: rgba(51, 122, 183, 0);
|
|
1520
|
-
border-left-color: rgb(83, 105, 255);
|
|
1521
|
-
border-width: 8px;
|
|
1522
|
-
margin-top: -8px;
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
img.CanvasXpressTooltip,
|
|
1526
|
-
svg.CanvasXpressTooltip {
|
|
1527
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1528
|
-
border: 0px none !important;
|
|
1529
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
1530
|
-
cursor: default;
|
|
1531
|
-
float: right;
|
|
1532
|
-
margin: 5px 8px 0px 0px !important;
|
|
1533
|
-
cursor: default;
|
|
1534
|
-
-moz-user-select: none;
|
|
1535
|
-
-khtml-user-select: none;
|
|
1536
|
-
-webkit-user-select: none;
|
|
1537
|
-
-o-user-select: none;
|
|
1538
|
-
-ms-user-select: none;
|
|
1539
|
-
}
|
|
1540
|
-
|
|
1541
|
-
span.CanvasXpressTooltip {
|
|
1471
|
+
div.CanvasXpressTooltipInfo {
|
|
1542
1472
|
border: 1px solid rgb(83, 105, 255);
|
|
1543
1473
|
border-radius: 5px;
|
|
1544
1474
|
background-color: rgba(255, 255, 255, 0.95);
|
|
@@ -1555,6 +1485,279 @@ span.CanvasXpressTooltip {
|
|
|
1555
1485
|
z-index: 1;
|
|
1556
1486
|
}
|
|
1557
1487
|
|
|
1488
|
+
/*****************************************************/
|
|
1489
|
+
/* Generators */
|
|
1490
|
+
/* A collection of Tooltips/Speech Bubbles */
|
|
1491
|
+
/* https://css-generators.com/tooltip-speech-bubble/ */
|
|
1492
|
+
/*****************************************************/
|
|
1493
|
+
|
|
1494
|
+
div.CanvasXpressTooltipInfoNone,
|
|
1495
|
+
div.CanvasXpressTooltipInfoBottom,
|
|
1496
|
+
div.CanvasXpressTooltipInfoTop,
|
|
1497
|
+
div.CanvasXpressTooltipInfoLeft,
|
|
1498
|
+
div.CanvasXpressTooltipInfoRight {
|
|
1499
|
+
color: var(--cx-font-color);
|
|
1500
|
+
font: var(--cx-font);
|
|
1501
|
+
max-height: 800px;
|
|
1502
|
+
padding: 10px;
|
|
1503
|
+
position: absolute;
|
|
1504
|
+
white-space: nowrap;
|
|
1505
|
+
text-align: left;
|
|
1506
|
+
z-index: 1;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
div.CanvasXpressTooltipInfoBottom {
|
|
1510
|
+
border-radius: var(--cx-callout-radius) var(--cx-callout-radius)
|
|
1511
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg))
|
|
1512
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg)) /
|
|
1513
|
+
var(--cx-callout-radius);
|
|
1514
|
+
clip-path: polygon(
|
|
1515
|
+
0 100%,
|
|
1516
|
+
0 0,
|
|
1517
|
+
100% 0,
|
|
1518
|
+
100% 100%,
|
|
1519
|
+
min(100%, 50% + var(--cx-callout-size) * tan(45deg)) 100%,
|
|
1520
|
+
50% calc(100% + var(--cx-callout-size)),
|
|
1521
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) 100%
|
|
1522
|
+
);
|
|
1523
|
+
background: var(--cx-callout-border-color);
|
|
1524
|
+
border-image: conic-gradient(var(--cx-callout-border-color) 0 0) fill 0 /
|
|
1525
|
+
var(--cx-callout-radius) max(0%, 50% - var(--cx-callout-size) * tan(45deg))
|
|
1526
|
+
0 max(0%, 50% - var(--cx-callout-size) * tan(45deg)) / 0 0
|
|
1527
|
+
var(--cx-callout-size) 0;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
div.CanvasXpressTooltipInfoBottom:before {
|
|
1531
|
+
content: "";
|
|
1532
|
+
position: absolute;
|
|
1533
|
+
z-index: -1;
|
|
1534
|
+
padding: var(--cx-callout-border-width);
|
|
1535
|
+
border-radius: inherit;
|
|
1536
|
+
clip-path: polygon(
|
|
1537
|
+
0 100%,
|
|
1538
|
+
0 0,
|
|
1539
|
+
100% 0,
|
|
1540
|
+
100% 100%,
|
|
1541
|
+
min(
|
|
1542
|
+
100% - var(--cx-callout-border-width),
|
|
1543
|
+
50% + var(--cx-callout-size) * tan(45deg) -
|
|
1544
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1545
|
+
)
|
|
1546
|
+
calc(100% - var(--cx-callout-border-width)),
|
|
1547
|
+
50%
|
|
1548
|
+
calc(
|
|
1549
|
+
100% + var(--cx-callout-size) - var(--cx-callout-border-width) /
|
|
1550
|
+
sin(45deg)
|
|
1551
|
+
),
|
|
1552
|
+
max(
|
|
1553
|
+
var(--cx-callout-border-width),
|
|
1554
|
+
50% - var(--cx-callout-size) * tan(45deg) +
|
|
1555
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1556
|
+
)
|
|
1557
|
+
calc(100% - var(--cx-callout-border-width))
|
|
1558
|
+
);
|
|
1559
|
+
background: var(--cx-callout-background-color) content-box;
|
|
1560
|
+
border-image: conic-gradient(var(--cx-callout-background-color) 0 0) fill 0 /
|
|
1561
|
+
var(--cx-callout-radius)
|
|
1562
|
+
max(
|
|
1563
|
+
var(--cx-callout-border-width),
|
|
1564
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1565
|
+
)
|
|
1566
|
+
0
|
|
1567
|
+
max(
|
|
1568
|
+
var(--cx-callout-border-width),
|
|
1569
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1570
|
+
) / 0 0 var(--cx-callout-size) 0;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
div.CanvasXpressTooltipInfoTop {
|
|
1574
|
+
border-radius: min(
|
|
1575
|
+
var(--cx-callout-radius),
|
|
1576
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1577
|
+
)
|
|
1578
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg))
|
|
1579
|
+
var(--cx-callout-radius) var(--cx-callout-radius) / var(--cx-callout-radius);
|
|
1580
|
+
clip-path: polygon(
|
|
1581
|
+
0 0,
|
|
1582
|
+
0 100%,
|
|
1583
|
+
100% 100%,
|
|
1584
|
+
100% 0,
|
|
1585
|
+
min(100%, 50% + var(--cx-callout-size) * tan(45deg)) 0,
|
|
1586
|
+
50% calc(-1 * var(--cx-callout-size)),
|
|
1587
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) 0
|
|
1588
|
+
);
|
|
1589
|
+
background: var(--cx-callout-border-color);
|
|
1590
|
+
border-image: conic-gradient(var(--cx-callout-border-color) 0 0) fill 0 / 0
|
|
1591
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) var(--cx-callout-radius)
|
|
1592
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) / var(--cx-callout-size)
|
|
1593
|
+
0 0 0;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
div.CanvasXpressTooltipInfoTop:before {
|
|
1597
|
+
content: "";
|
|
1598
|
+
position: absolute;
|
|
1599
|
+
z-index: -1;
|
|
1600
|
+
padding: var(--cx-callout-border-width);
|
|
1601
|
+
border-radius: inherit;
|
|
1602
|
+
clip-path: polygon(
|
|
1603
|
+
0 0,
|
|
1604
|
+
0 100%,
|
|
1605
|
+
100% 100%,
|
|
1606
|
+
100% 0,
|
|
1607
|
+
min(
|
|
1608
|
+
100% - var(--cx-callout-border-width),
|
|
1609
|
+
50% + var(--cx-callout-size) * tan(45deg) -
|
|
1610
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1611
|
+
)
|
|
1612
|
+
var(--cx-callout-border-width),
|
|
1613
|
+
50%
|
|
1614
|
+
calc(var(--cx-callout-border-width) / sin(45deg) - var(--cx-callout-size)),
|
|
1615
|
+
max(
|
|
1616
|
+
var(--cx-callout-border-width),
|
|
1617
|
+
50% - var(--cx-callout-size) * tan(45deg) +
|
|
1618
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1619
|
+
)
|
|
1620
|
+
var(--cx-callout-border-width)
|
|
1621
|
+
);
|
|
1622
|
+
background: var(--cx-callout-background-color) content-box;
|
|
1623
|
+
border-image: conic-gradient(var(--cx-callout-background-color) 0 0) fill 0/ 0
|
|
1624
|
+
max(
|
|
1625
|
+
var(--cx-callout-border-width),
|
|
1626
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1627
|
+
) var(--cx-callout-radius) max(
|
|
1628
|
+
var(--cx-callout-border-width),
|
|
1629
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1630
|
+
) / var(--cx-callout-size) 0 0 0;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
div.CanvasXpressTooltipInfoLeft {
|
|
1635
|
+
border-radius: var(--cx-callout-radius) /
|
|
1636
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg))
|
|
1637
|
+
var(--cx-callout-radius) var(--cx-callout-radius)
|
|
1638
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg));
|
|
1639
|
+
clip-path: polygon(
|
|
1640
|
+
0 0,
|
|
1641
|
+
100% 0,
|
|
1642
|
+
100% 100%,
|
|
1643
|
+
0 100%,
|
|
1644
|
+
0 min(100%, 50% + var(--cx-callout-size) * tan(45deg)),
|
|
1645
|
+
calc(-1 * var(--cx-callout-size)) 50%,
|
|
1646
|
+
0 max(0%, 50% - var(--cx-callout-size) * tan(45deg))
|
|
1647
|
+
);
|
|
1648
|
+
background: var(--cx-callout-border-color);
|
|
1649
|
+
border-image: conic-gradient(var(--cx-callout-border-color) 0 0) fill 0 /
|
|
1650
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) var(--cx-callout-radius)
|
|
1651
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) 0/0 0 0
|
|
1652
|
+
var(--cx-callout-size);
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
div.CanvasXpressTooltipInfoLeft::before {
|
|
1656
|
+
content: "";
|
|
1657
|
+
position: absolute;
|
|
1658
|
+
inset: 0;
|
|
1659
|
+
z-index: -1;
|
|
1660
|
+
padding: var(--cx-callout-border-width);
|
|
1661
|
+
border-radius: inherit;
|
|
1662
|
+
clip-path: polygon(
|
|
1663
|
+
0 0,
|
|
1664
|
+
100% 0,
|
|
1665
|
+
100% 100%,
|
|
1666
|
+
0 100%,
|
|
1667
|
+
var(--cx-callout-border-width)
|
|
1668
|
+
min(
|
|
1669
|
+
100% - var(--cx-callout-border-width),
|
|
1670
|
+
50% + var(--cx-callout-size) * tan(45deg) -
|
|
1671
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1672
|
+
),
|
|
1673
|
+
calc(var(--cx-callout-border-width) / sin(45deg) - var(--cx-callout-size))
|
|
1674
|
+
50%,
|
|
1675
|
+
var(--cx-callout-border-width)
|
|
1676
|
+
max(
|
|
1677
|
+
var(--cx-callout-border-width),
|
|
1678
|
+
50% - var(--cx-callout-size) * tan(45deg) +
|
|
1679
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1680
|
+
)
|
|
1681
|
+
);
|
|
1682
|
+
background: var(--cx-callout-background-color) content-box;
|
|
1683
|
+
border-image: conic-gradient(var(--cx-callout-background-color) 0 0) fill 0 /
|
|
1684
|
+
max(
|
|
1685
|
+
var(--cx-callout-border-width),
|
|
1686
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1687
|
+
)
|
|
1688
|
+
var(--cx-callout-radius)
|
|
1689
|
+
max(
|
|
1690
|
+
var(--cx-callout-border-width),
|
|
1691
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1692
|
+
)
|
|
1693
|
+
0/0 0 0 var(--cx-callout-size);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
div.CanvasXpressTooltipInfoRight {
|
|
1697
|
+
border-radius: var(--cx-callout-radius) / var(--cx-callout-radius)
|
|
1698
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg))
|
|
1699
|
+
min(var(--cx-callout-radius), 50% - var(--cx-callout-size) * tan(45deg))
|
|
1700
|
+
var(--cx-callout-radius);
|
|
1701
|
+
clip-path: polygon(
|
|
1702
|
+
100% 0,
|
|
1703
|
+
0 0,
|
|
1704
|
+
0 100%,
|
|
1705
|
+
100% 100%,
|
|
1706
|
+
100% min(100%, 50% + var(--cx-callout-size) * tan(45deg)),
|
|
1707
|
+
calc(100% + var(--cx-callout-size)) 50%,
|
|
1708
|
+
100% max(0%, 50% - var(--cx-callout-size) * tan(45deg))
|
|
1709
|
+
);
|
|
1710
|
+
background: var(--cx-callout-border-color);
|
|
1711
|
+
border-image: conic-gradient(var(--cx-callout-border-color) 0 0) fill 0 /
|
|
1712
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) 0
|
|
1713
|
+
max(0%, 50% - var(--cx-callout-size) * tan(45deg)) var(--cx-callout-radius) /
|
|
1714
|
+
0 var(--cx-callout-size) 0 0;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
div.CanvasXpressTooltipInfoRight::before {
|
|
1718
|
+
content: "";
|
|
1719
|
+
position: absolute;
|
|
1720
|
+
inset: 0;
|
|
1721
|
+
z-index: -1;
|
|
1722
|
+
padding: var(--cx-callout-border-width);
|
|
1723
|
+
border-radius: inherit;
|
|
1724
|
+
clip-path: polygon(
|
|
1725
|
+
100% 0,
|
|
1726
|
+
0 0,
|
|
1727
|
+
0 100%,
|
|
1728
|
+
100% 100%,
|
|
1729
|
+
calc(100% - var(--cx-callout-border-width))
|
|
1730
|
+
min(
|
|
1731
|
+
100% - var(--cx-callout-border-width),
|
|
1732
|
+
50% + var(--cx-callout-size) * tan(45deg) -
|
|
1733
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1734
|
+
),
|
|
1735
|
+
calc(
|
|
1736
|
+
100% + var(--cx-callout-size) - var(--cx-callout-border-width) /
|
|
1737
|
+
sin(45deg)
|
|
1738
|
+
)
|
|
1739
|
+
50%,
|
|
1740
|
+
calc(100% - var(--cx-callout-border-width))
|
|
1741
|
+
max(
|
|
1742
|
+
var(--cx-callout-border-width),
|
|
1743
|
+
50% - var(--cx-callout-size) * tan(45deg) +
|
|
1744
|
+
var(--cx-callout-border-width) * tan(22.5deg)
|
|
1745
|
+
)
|
|
1746
|
+
);
|
|
1747
|
+
background: var(--cx-callout-background-color) content-box;
|
|
1748
|
+
border-image: conic-gradient(var(--cx-callout-background-color) 0 0) fill 0 /
|
|
1749
|
+
max(
|
|
1750
|
+
var(--cx-callout-border-width),
|
|
1751
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1752
|
+
)
|
|
1753
|
+
0
|
|
1754
|
+
max(
|
|
1755
|
+
var(--cx-callout-border-width),
|
|
1756
|
+
50% - var(--cx-callout-size) * tan(45deg)
|
|
1757
|
+
)
|
|
1758
|
+
var(--cx-callout-radius) / 0 var(--cx-callout-size) 0 0;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1558
1761
|
div.CanvasXpressMousePosition {
|
|
1559
1762
|
background: rgba(0, 0, 0, 0) !important;
|
|
1560
1763
|
border: 0px none !important;
|
|
@@ -1711,7 +1914,7 @@ div.CanvasXpressAltTooltip {
|
|
|
1711
1914
|
box-shadow: 0 0 5px var(--cx-color-transparent);
|
|
1712
1915
|
color: var(--cx-font-color);
|
|
1713
1916
|
font: var(--cx-font);
|
|
1714
|
-
font-size:
|
|
1917
|
+
font-size: var(--cx-font-size);
|
|
1715
1918
|
line-height: 100%;
|
|
1716
1919
|
padding: 5px;
|
|
1717
1920
|
position: absolute;
|
|
@@ -1726,14 +1929,14 @@ div.CanvasXpressAltTooltip {
|
|
|
1726
1929
|
|
|
1727
1930
|
table.CanvasXpressDataTableDOE {
|
|
1728
1931
|
border-spacing: 0 !important;
|
|
1729
|
-
font-size:
|
|
1932
|
+
font-size: var(--cx-font-size) !important;
|
|
1730
1933
|
padding: 0 !important;
|
|
1731
1934
|
border: none !important;
|
|
1732
1935
|
}
|
|
1733
1936
|
|
|
1734
1937
|
th.CanvasXpressDataTableDOE {
|
|
1735
1938
|
padding: 0 !important;
|
|
1736
|
-
font-size:
|
|
1939
|
+
font-size: var(--cx-font-size) !important;
|
|
1737
1940
|
font-weight: bold !important;
|
|
1738
1941
|
padding-left: 5px !important;
|
|
1739
1942
|
padding-right: 5px !important;
|
|
@@ -1747,7 +1950,7 @@ th.CanvasXpressDataTableDOE {
|
|
|
1747
1950
|
|
|
1748
1951
|
td.CanvasXpressDataTableDOE {
|
|
1749
1952
|
padding: 0 !important;
|
|
1750
|
-
font-size:
|
|
1953
|
+
font-size: var(--cx-font-size) !important;
|
|
1751
1954
|
padding-left: 5px !important;
|
|
1752
1955
|
padding-right: 18px !important;
|
|
1753
1956
|
height: 18px !important;
|
|
@@ -1759,7 +1962,7 @@ td.CanvasXpressDataTableDOE {
|
|
|
1759
1962
|
}
|
|
1760
1963
|
|
|
1761
1964
|
tr.CanvasXpressDataTableDOE {
|
|
1762
|
-
font-size:
|
|
1965
|
+
font-size: var(--cx-font-size) !important;
|
|
1763
1966
|
}
|
|
1764
1967
|
|
|
1765
1968
|
/****************/
|
|
@@ -1909,11 +2112,15 @@ tr > th.CanvasXpressTableCellActive:last-child {
|
|
|
1909
2112
|
|
|
1910
2113
|
th.CanvasXpressTableCellHead {
|
|
1911
2114
|
background: var(--cx-background-accent-color);
|
|
2115
|
+
font: var(--cx-x-large-font);
|
|
2116
|
+
font-weight: bold;
|
|
1912
2117
|
color: var(--cx-font-color);
|
|
1913
2118
|
}
|
|
1914
2119
|
|
|
1915
2120
|
th.CanvasXpressTableCellHeadActive {
|
|
1916
2121
|
background: var(--cx-background-accent-color);
|
|
2122
|
+
font: var(--cx-x-large-font);
|
|
2123
|
+
font-weight: bold;
|
|
1917
2124
|
color: var(--cx-font-color);
|
|
1918
2125
|
}
|
|
1919
2126
|
|
|
@@ -1942,6 +2149,7 @@ td.CanvasXpressTableCellActive {
|
|
|
1942
2149
|
border-bottom: var(--cx-border-transparent);
|
|
1943
2150
|
border-left: none;
|
|
1944
2151
|
border-right: var(--cx-border-transparent);
|
|
2152
|
+
font: var(--cx-x-large-font);
|
|
1945
2153
|
color: var(--cx-font-color);
|
|
1946
2154
|
padding: 2px;
|
|
1947
2155
|
vertical-align: middle;
|
|
@@ -1998,7 +2206,7 @@ span.CanvasXpressDataFilterText,
|
|
|
1998
2206
|
span.CanvasXpressDataFilterTextActive,
|
|
1999
2207
|
select.CanvasXpressDataFilterContainerString {
|
|
2000
2208
|
font-family: var(--cx-font-family);
|
|
2001
|
-
font-size:
|
|
2209
|
+
font-size: var(--cx-x-large-font-size);
|
|
2002
2210
|
color: var(--cx-font-color);
|
|
2003
2211
|
}
|
|
2004
2212
|
|
|
@@ -2042,7 +2250,7 @@ div.CanvasXpressDataFilterContent {
|
|
|
2042
2250
|
border-radius: 0px 0px 4px 4px;
|
|
2043
2251
|
border-top: 0px;
|
|
2044
2252
|
font-family: var(--cx-font-family);
|
|
2045
|
-
font-size:
|
|
2253
|
+
font-size: var(--cx-x-large-font-size);
|
|
2046
2254
|
color: var(--cx-font-color);
|
|
2047
2255
|
overflow-y: auto;
|
|
2048
2256
|
overflow-x: hidden;
|
|
@@ -2297,7 +2505,7 @@ input.CanvasXpressRangeSliderMax {
|
|
|
2297
2505
|
color: var(--cx-background-color);
|
|
2298
2506
|
border: 1px solid var(--cx-background-widgets-color);
|
|
2299
2507
|
border-radius: 5px;
|
|
2300
|
-
font:
|
|
2508
|
+
font: var(--cx-font);
|
|
2301
2509
|
margin-bottom: 2px;
|
|
2302
2510
|
line-height: 100%;
|
|
2303
2511
|
width: 60px;
|
|
@@ -2598,7 +2806,7 @@ div.CanvasXpressLink {
|
|
|
2598
2806
|
box-shadow: rgba(154, 154, 154, 0.2) 3px 3px;
|
|
2599
2807
|
color: var(--cx-font-color);
|
|
2600
2808
|
cursor: default;
|
|
2601
|
-
font:
|
|
2809
|
+
font: var(--cx-font);
|
|
2602
2810
|
line-height: 100%;
|
|
2603
2811
|
margin: 0px;
|
|
2604
2812
|
opacity: 0.95;
|
|
@@ -2650,7 +2858,7 @@ section.CanvasXpressTabMenuConfigurator>h1.CanvasXpressTabMenuConfigurator {
|
|
|
2650
2858
|
margin: 0;
|
|
2651
2859
|
padding: 0.5px;
|
|
2652
2860
|
overflow: hidden;
|
|
2653
|
-
font:
|
|
2861
|
+
font: var(--cx-font);
|
|
2654
2862
|
color: var(--cx-font-color);
|
|
2655
2863
|
line-height: 100%;
|
|
2656
2864
|
}
|
|
@@ -2687,7 +2895,7 @@ div.CanvasXpressMenu {
|
|
|
2687
2895
|
box-shadow: rgba(154, 154, 154, 0.2) 3px 3px;
|
|
2688
2896
|
color: var(--cx-font-color);
|
|
2689
2897
|
cursor: default;
|
|
2690
|
-
font:
|
|
2898
|
+
font: var(--cx-x-large-font);
|
|
2691
2899
|
line-height: 100%;
|
|
2692
2900
|
margin: 0px;
|
|
2693
2901
|
padding: 0px;
|
|
@@ -2710,7 +2918,7 @@ ul.CanvasXpressList {
|
|
|
2710
2918
|
li.CanvasXpressListItemSep {
|
|
2711
2919
|
cursor: default;
|
|
2712
2920
|
display: block;
|
|
2713
|
-
font:
|
|
2921
|
+
font: var(--cx-x-large-font);
|
|
2714
2922
|
color: var(--cx-font-color);
|
|
2715
2923
|
font-size: 1px;
|
|
2716
2924
|
height: 100%;
|
|
@@ -2725,7 +2933,7 @@ li.CanvasXpressListItemSep {
|
|
|
2725
2933
|
input.CanvasXpressListItem {
|
|
2726
2934
|
cursor: default;
|
|
2727
2935
|
display: block;
|
|
2728
|
-
font:
|
|
2936
|
+
font: var(--cx-x-large-font);
|
|
2729
2937
|
color: var(--cx-font-color);
|
|
2730
2938
|
line-height: 100%;
|
|
2731
2939
|
list-style: none;
|
|
@@ -2741,7 +2949,7 @@ input[type=file] {
|
|
|
2741
2949
|
div.CanvasXpressListItem {
|
|
2742
2950
|
box-sizing: border-box;
|
|
2743
2951
|
border: 1px solid rgb(83, 105, 255);
|
|
2744
|
-
font:
|
|
2952
|
+
font: var(--cx-x-large-font);
|
|
2745
2953
|
color: var(--cx-font-color);
|
|
2746
2954
|
line-height: 24px;
|
|
2747
2955
|
}
|
|
@@ -2752,7 +2960,7 @@ li.CanvasXpressListItem {
|
|
|
2752
2960
|
border-width: 1px 0px;
|
|
2753
2961
|
cursor: default;
|
|
2754
2962
|
display: block;
|
|
2755
|
-
font:
|
|
2963
|
+
font: var(--cx-x-large-font);
|
|
2756
2964
|
color: var(--cx-font-color);
|
|
2757
2965
|
height: 100%;
|
|
2758
2966
|
line-height: 100%;
|
|
@@ -2771,7 +2979,7 @@ li.CanvasXpressListItemActive {
|
|
|
2771
2979
|
border-width: 1px 0px;
|
|
2772
2980
|
cursor: default;
|
|
2773
2981
|
display: block;
|
|
2774
|
-
font:
|
|
2982
|
+
font: var(--cx-x-large-font);
|
|
2775
2983
|
color: var(--cx-font-color);
|
|
2776
2984
|
height: 100%;
|
|
2777
2985
|
line-height: 100%;
|
|
@@ -2859,7 +3067,7 @@ li.CanvasXpressListItemScrollSearch {
|
|
|
2859
3067
|
input.CanvasXpressListItemScrollSearch {
|
|
2860
3068
|
color: var(--cx-font-color);
|
|
2861
3069
|
cursor: default;
|
|
2862
|
-
font:
|
|
3070
|
+
font: var(--cx-x-large-font);
|
|
2863
3071
|
line-height: 24px;
|
|
2864
3072
|
list-style: none;
|
|
2865
3073
|
margin: 3px;
|
|
@@ -2876,7 +3084,7 @@ a.CanvasXpressListItemA {
|
|
|
2876
3084
|
color: var(--cx-font-color);
|
|
2877
3085
|
cursor: pointer;
|
|
2878
3086
|
display: block;
|
|
2879
|
-
font:
|
|
3087
|
+
font: var(--cx-x-large-font);
|
|
2880
3088
|
line-height: 24px;
|
|
2881
3089
|
list-style: none;
|
|
2882
3090
|
margin: 0px;
|
|
@@ -2895,7 +3103,7 @@ a.CanvasXpressListItemAActive {
|
|
|
2895
3103
|
color: var(--cx-font-color);
|
|
2896
3104
|
cursor: pointer;
|
|
2897
3105
|
display: block;
|
|
2898
|
-
font:
|
|
3106
|
+
font: var(--cx-x-large-font);
|
|
2899
3107
|
line-height: 24px;
|
|
2900
3108
|
list-style: none;
|
|
2901
3109
|
margin: 0px;
|
|
@@ -2915,7 +3123,7 @@ a.CanvasXpressListItemAArrow {
|
|
|
2915
3123
|
color: var(--cx-font-color);
|
|
2916
3124
|
cursor: pointer;
|
|
2917
3125
|
display: block;
|
|
2918
|
-
font:
|
|
3126
|
+
font: var(--cx-x-large-font);
|
|
2919
3127
|
line-height: 24px;
|
|
2920
3128
|
list-style: none;
|
|
2921
3129
|
margin: 0px;
|
|
@@ -2935,7 +3143,7 @@ a.CanvasXpressListItemAArrowActive {
|
|
|
2935
3143
|
color: var(--cx-font-color);
|
|
2936
3144
|
cursor: pointer;
|
|
2937
3145
|
display: block;
|
|
2938
|
-
font:
|
|
3146
|
+
font: var(--cx-x-large-font);
|
|
2939
3147
|
line-height: 24px;
|
|
2940
3148
|
list-style: none;
|
|
2941
3149
|
margin: 0px;
|
|
@@ -2953,7 +3161,7 @@ svg.CanvasXpressListIcon {
|
|
|
2953
3161
|
border: 0px none !important;
|
|
2954
3162
|
color: var(--cx-font-color);
|
|
2955
3163
|
cursor: pointer;
|
|
2956
|
-
font:
|
|
3164
|
+
font: var(--cx-x-large-font);
|
|
2957
3165
|
height: 24px;
|
|
2958
3166
|
line-height: 24px;
|
|
2959
3167
|
list-style: none;
|
|
@@ -2972,7 +3180,7 @@ svg.CanvasXpressListIcon {
|
|
|
2972
3180
|
span.CanvasXpressListItemText {
|
|
2973
3181
|
color: var(--cx-font-color);
|
|
2974
3182
|
cursor: pointer;
|
|
2975
|
-
font:
|
|
3183
|
+
font: var(--cx-x-large-font);
|
|
2976
3184
|
line-height: 24px;
|
|
2977
3185
|
list-style: none;
|
|
2978
3186
|
margin-right: 10px;
|
|
@@ -2982,7 +3190,7 @@ span.CanvasXpressListItemText {
|
|
|
2982
3190
|
input.CanvasXpressListItemText {
|
|
2983
3191
|
color: var(--cx-font-color);
|
|
2984
3192
|
cursor: pointer;
|
|
2985
|
-
font:
|
|
3193
|
+
font: var(--cx-x-large-font);
|
|
2986
3194
|
line-height: 24px;
|
|
2987
3195
|
list-style: none;
|
|
2988
3196
|
white-space: nowrap;
|
|
@@ -2992,7 +3200,7 @@ span.CanvasXpressListItemTextShort {
|
|
|
2992
3200
|
color: var(--cx-font-color);
|
|
2993
3201
|
cursor: pointer;
|
|
2994
3202
|
float: right;
|
|
2995
|
-
font: italic
|
|
3203
|
+
font: var(--cx-small-font-italic);
|
|
2996
3204
|
line-height: 24px;
|
|
2997
3205
|
list-style: none;
|
|
2998
3206
|
margin-left: 10px;
|
|
@@ -3005,7 +3213,7 @@ span.CanvasXpressListItemTextSep {
|
|
|
3005
3213
|
border-bottom-color: rgb(255, 255, 255);
|
|
3006
3214
|
cursor: default;
|
|
3007
3215
|
display: block;
|
|
3008
|
-
font:
|
|
3216
|
+
font: var(--cx-x-large-font);
|
|
3009
3217
|
color: var(--cx-font-color);
|
|
3010
3218
|
font-size: 1px;
|
|
3011
3219
|
line-height: 1px;
|
|
@@ -3020,7 +3228,7 @@ table.CanvasXpressListItemTable {
|
|
|
3020
3228
|
line-height: 20px;
|
|
3021
3229
|
color: var(--cx-font-color);
|
|
3022
3230
|
cursor: default;
|
|
3023
|
-
font:
|
|
3231
|
+
font: var(--cx-x-large-font);
|
|
3024
3232
|
color: var(--cx-font-color);
|
|
3025
3233
|
line-height: 24px;
|
|
3026
3234
|
padding-left: 3px;
|
|
@@ -3053,7 +3261,7 @@ div.CanvasXpressToolbarHelp {
|
|
|
3053
3261
|
box-shadow: rgba(154, 154, 154, 0.2) 3px 3px;
|
|
3054
3262
|
color: var(--cx-font-color);
|
|
3055
3263
|
cursor: default;
|
|
3056
|
-
font:
|
|
3264
|
+
font: var(--cx-x-large-font);
|
|
3057
3265
|
line-height: 24px;
|
|
3058
3266
|
-moz-user-select: none;
|
|
3059
3267
|
-khtml-user-select: none;
|
|
@@ -3064,7 +3272,7 @@ div.CanvasXpressToolbarHelp {
|
|
|
3064
3272
|
|
|
3065
3273
|
p.CanvasXpressToolbarHelp {
|
|
3066
3274
|
cursor: default;
|
|
3067
|
-
font:
|
|
3275
|
+
font: var(--cx-x-large-font);
|
|
3068
3276
|
color: var(--cx-font-color);
|
|
3069
3277
|
line-height: 24px;
|
|
3070
3278
|
margin: 0px;
|
|
@@ -3078,7 +3286,7 @@ div.CanvasXpressForm {
|
|
|
3078
3286
|
background-color: rgba(255, 255, 255, 0.95);
|
|
3079
3287
|
color: var(--cx-font-color);
|
|
3080
3288
|
cursor: move;
|
|
3081
|
-
font:
|
|
3289
|
+
font: var(--cx-x-large-font);
|
|
3082
3290
|
margin: 8px;
|
|
3083
3291
|
padding: 8px;
|
|
3084
3292
|
position: absolute;
|
|
@@ -3132,7 +3340,7 @@ input.CanvasXpressFormText {
|
|
|
3132
3340
|
border: 1px solid rgb(83, 105, 255);
|
|
3133
3341
|
color: var(--cx-font-color);
|
|
3134
3342
|
cursor: default;
|
|
3135
|
-
font:
|
|
3343
|
+
font: var(--cx-x-large-font);
|
|
3136
3344
|
line-height: 24px;
|
|
3137
3345
|
padding-left: 3px;
|
|
3138
3346
|
}
|
|
@@ -3142,7 +3350,7 @@ form.CanvasXpressFormForm {
|
|
|
3142
3350
|
border: 1px solid rgb(83, 105, 255);
|
|
3143
3351
|
color: var(--cx-font-color);
|
|
3144
3352
|
cursor: default;
|
|
3145
|
-
font:
|
|
3353
|
+
font: var(--cx-x-large-font);
|
|
3146
3354
|
line-height: 24px;
|
|
3147
3355
|
margin: 8px;
|
|
3148
3356
|
overflow: auto;
|
|
@@ -3152,7 +3360,7 @@ form.CanvasXpressFormForm {
|
|
|
3152
3360
|
div.CanvasXpressConfiguratorColor {
|
|
3153
3361
|
box-sizing: content-box;
|
|
3154
3362
|
border: 1px solid rgb(83, 105, 255);
|
|
3155
|
-
font:
|
|
3363
|
+
font: var(--cx-font);
|
|
3156
3364
|
color: rgb(34, 34, 34);
|
|
3157
3365
|
line-height: 18px;
|
|
3158
3366
|
}
|
|
@@ -3163,7 +3371,7 @@ div.CanvasXpressConfiguratorColorMain {
|
|
|
3163
3371
|
background-repeat: no-repeat;
|
|
3164
3372
|
box-sizing: content-box;
|
|
3165
3373
|
border: none;
|
|
3166
|
-
font:
|
|
3374
|
+
font: var(--cx-font);
|
|
3167
3375
|
color:var(--cx-font-color);
|
|
3168
3376
|
float: left;
|
|
3169
3377
|
cursor: crosshair;
|
|
@@ -3174,7 +3382,7 @@ div.CanvasXpressConfiguratorColorExtra {
|
|
|
3174
3382
|
background-image: url(data:image/gif;base64,R0lGODlhDwAPAKEBAAAAAP///////////yH5BAEKAAIALAAAAAAPAA8AAAIklB8Qx53b4otSUWcvyiz4/4AeQJbmKY4p1HHapBlwPL/uVRsFADs=);
|
|
3175
3383
|
background-repeat: no-repeat;
|
|
3176
3384
|
border: none;
|
|
3177
|
-
font:
|
|
3385
|
+
font: var(--cx-font);
|
|
3178
3386
|
color: var(--cx-font-color);
|
|
3179
3387
|
cursor: crosshair;
|
|
3180
3388
|
overflow: hidden;
|
|
@@ -3328,7 +3536,7 @@ div.CanvasXpress-ParentNode {
|
|
|
3328
3536
|
*/
|
|
3329
3537
|
|
|
3330
3538
|
div.CanvasXpressTabPanel {
|
|
3331
|
-
font:
|
|
3539
|
+
font: var(--cx-x-large-font);
|
|
3332
3540
|
float: left;
|
|
3333
3541
|
width: 100%
|
|
3334
3542
|
}
|
|
@@ -3369,7 +3577,7 @@ div.CanvasXpressTabPanelRibbon {
|
|
|
3369
3577
|
|
|
3370
3578
|
span.CanvasXpressTabPanelRibbon {
|
|
3371
3579
|
color: var(--cx-font-color);
|
|
3372
|
-
font:
|
|
3580
|
+
font: var(--cx-x-large-font);
|
|
3373
3581
|
line-height: 28px;
|
|
3374
3582
|
list-style: none;
|
|
3375
3583
|
white-space: nowrap;
|
|
@@ -3400,7 +3608,7 @@ svg.CanvasXpressTabPanelRibbon:hover {
|
|
|
3400
3608
|
/* Header */
|
|
3401
3609
|
|
|
3402
3610
|
div.CanvasXpressTabPanelHeader {
|
|
3403
|
-
font:
|
|
3611
|
+
font: var(--cx-x-large-font);
|
|
3404
3612
|
border-bottom: 2px solid rgb(83, 105, 255);
|
|
3405
3613
|
height: 38px;
|
|
3406
3614
|
width: 100%;
|
|
@@ -3408,7 +3616,7 @@ div.CanvasXpressTabPanelHeader {
|
|
|
3408
3616
|
}
|
|
3409
3617
|
|
|
3410
3618
|
div.CanvasXpressTabPanelHeaderTab {
|
|
3411
|
-
font:
|
|
3619
|
+
font: var(--cx-x-large-font);
|
|
3412
3620
|
margin-left: 20px;
|
|
3413
3621
|
margin-right: 20px;
|
|
3414
3622
|
float: left;
|
|
@@ -3420,7 +3628,7 @@ input.CanvasXpressTabPanelHeader {
|
|
|
3420
3628
|
border-style: solid;
|
|
3421
3629
|
border-radius: 5px 5px 0 0;
|
|
3422
3630
|
padding: 8px;
|
|
3423
|
-
font:
|
|
3631
|
+
font: var(--cx-x-large-font);
|
|
3424
3632
|
max-width: 100px;
|
|
3425
3633
|
outline: none;
|
|
3426
3634
|
text-align: center;
|
|
@@ -3435,7 +3643,7 @@ input.CanvasXpressTabPanelHeaderActive {
|
|
|
3435
3643
|
border-style: solid;
|
|
3436
3644
|
border-radius: 5px 5px 0 0;
|
|
3437
3645
|
padding: 8px;
|
|
3438
|
-
font:
|
|
3646
|
+
font: var(--cx-x-large-font);
|
|
3439
3647
|
max-width: 100px;
|
|
3440
3648
|
outline: none;
|
|
3441
3649
|
text-align: center;
|