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