jsuites 4.16.11 → 4.17.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/dist/jsuites.basic.css +72 -12
- package/dist/jsuites.basic.js +603 -609
- package/dist/jsuites.css +72 -12
- package/dist/jsuites.js +603 -609
- package/package.json +1 -1
package/dist/jsuites.basic.css
CHANGED
|
@@ -1536,18 +1536,26 @@ div[data-before]:before {
|
|
|
1536
1536
|
box-sizing: border-box;
|
|
1537
1537
|
}
|
|
1538
1538
|
|
|
1539
|
-
.jeditor-
|
|
1540
|
-
|
|
1539
|
+
.jeditor-container.with-margin {
|
|
1540
|
+
background-color: #f2f2f2;
|
|
1541
|
+
max-width: 1200px;
|
|
1541
1542
|
}
|
|
1542
1543
|
|
|
1543
|
-
.jeditor-
|
|
1544
|
-
|
|
1544
|
+
.jeditor-dragging {
|
|
1545
|
+
border:1px dashed #000;
|
|
1545
1546
|
}
|
|
1546
1547
|
|
|
1547
1548
|
.jeditor {
|
|
1548
1549
|
outline:none;
|
|
1549
1550
|
word-break: break-word;
|
|
1551
|
+
}
|
|
1550
1552
|
|
|
1553
|
+
.jeditor-container.with-margin .jeditor {
|
|
1554
|
+
background-color: #fff;
|
|
1555
|
+
margin: 80px;
|
|
1556
|
+
min-height: 800px;
|
|
1557
|
+
padding: 80px;
|
|
1558
|
+
max-width: 800px;
|
|
1551
1559
|
}
|
|
1552
1560
|
|
|
1553
1561
|
.jeditor[data-placeholder]:empty:before {
|
|
@@ -1555,12 +1563,6 @@ div[data-before]:before {
|
|
|
1555
1563
|
color: lightgray;
|
|
1556
1564
|
}
|
|
1557
1565
|
|
|
1558
|
-
.jeditor-container.jeditor-padding .jeditor {
|
|
1559
|
-
min-height:100px;
|
|
1560
|
-
margin-bottom:10px;
|
|
1561
|
-
padding:10px;
|
|
1562
|
-
}
|
|
1563
|
-
|
|
1564
1566
|
/** Snippet **/
|
|
1565
1567
|
|
|
1566
1568
|
.jsnippet {
|
|
@@ -1647,7 +1649,7 @@ div[data-before]:before {
|
|
|
1647
1649
|
}
|
|
1648
1650
|
|
|
1649
1651
|
.jeditor img:focus {
|
|
1650
|
-
border:2px solid #0096FD;
|
|
1652
|
+
border: 2px solid #0096FD;
|
|
1651
1653
|
outline: #0096FD;
|
|
1652
1654
|
}
|
|
1653
1655
|
|
|
@@ -1663,6 +1665,59 @@ div[data-before]:before {
|
|
|
1663
1665
|
width: fit-content;
|
|
1664
1666
|
max-width: 100%;
|
|
1665
1667
|
box-sizing: border-box;
|
|
1668
|
+
margin: 10px;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
.toolbar-on-top .jeditor-toolbar {
|
|
1672
|
+
width: initial;
|
|
1673
|
+
margin: 0px;
|
|
1674
|
+
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
|
|
1675
|
+
display: block;
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
.toolbar-on-top .jeditor {
|
|
1679
|
+
padding: 15px;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.toolbar-on-top .jtoolbar .material-icons {
|
|
1683
|
+
font-size: 24px;
|
|
1684
|
+
transform: initial;
|
|
1685
|
+
margin: 4px;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.toolbar-on-top .jtoolbar .jpicker-header {
|
|
1689
|
+
font-size: 1em;
|
|
1690
|
+
margin-top: 4px;
|
|
1691
|
+
margin-bottom: 4px;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.jeditor table {
|
|
1695
|
+
border-collapse: collapse;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.jeditor table td {
|
|
1699
|
+
border: 1px solid #bbb;
|
|
1700
|
+
height: 2em;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
.jeditor table td:focus {
|
|
1704
|
+
border: 1px solid blue;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
.jeditor .line-break {
|
|
1708
|
+
border-top: 1px dashed #ccc;
|
|
1709
|
+
display: flex;
|
|
1710
|
+
justify-content: center;
|
|
1711
|
+
pointer-events: none;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.jeditor .line-break:before {
|
|
1715
|
+
content: 'New page';
|
|
1716
|
+
background-color: #fff;
|
|
1717
|
+
color: #ccc;
|
|
1718
|
+
margin: -1em;
|
|
1719
|
+
padding: 6px;
|
|
1720
|
+
position: absolute;
|
|
1666
1721
|
}
|
|
1667
1722
|
|
|
1668
1723
|
.jloading {
|
|
@@ -1841,7 +1896,7 @@ div[data-before]:before {
|
|
|
1841
1896
|
}
|
|
1842
1897
|
|
|
1843
1898
|
.jpicker-header:hover {
|
|
1844
|
-
background-color: #
|
|
1899
|
+
background-color: #f2f2f2;
|
|
1845
1900
|
}
|
|
1846
1901
|
|
|
1847
1902
|
.jpicker-content {
|
|
@@ -1899,6 +1954,11 @@ div[data-before]:before {
|
|
|
1899
1954
|
flex-wrap: wrap;
|
|
1900
1955
|
}
|
|
1901
1956
|
|
|
1957
|
+
.jpicker-focus .jpicker-content.jpicker-grid {
|
|
1958
|
+
display: inline-grid;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
|
|
1902
1962
|
|
|
1903
1963
|
.jrating {
|
|
1904
1964
|
display:flex;
|