jspreadsheet 11.7.1 → 11.7.2
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/index.js +560 -528
- package/dist/jspreadsheet.css +8 -8
- package/package.json +1 -1
package/dist/jspreadsheet.css
CHANGED
|
@@ -1622,13 +1622,16 @@
|
|
|
1622
1622
|
padding: 8px 16px 8px 16px;
|
|
1623
1623
|
border-radius: 2px;
|
|
1624
1624
|
cursor:pointer;
|
|
1625
|
-
outline: none;
|
|
1626
1625
|
background-color: #737373;
|
|
1627
1626
|
border: 1px solid transparent;
|
|
1628
1627
|
color: #fff;
|
|
1629
1628
|
margin-top: 4px;
|
|
1630
1629
|
}
|
|
1631
1630
|
|
|
1631
|
+
.jss_style_button[disabled] {
|
|
1632
|
+
opacity: 0.6;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1632
1635
|
.jss input[disabled] {
|
|
1633
1636
|
opacity: 0.6;
|
|
1634
1637
|
}
|
|
@@ -1643,13 +1646,15 @@
|
|
|
1643
1646
|
div.jss_filters_icon {
|
|
1644
1647
|
font-size: 15px;
|
|
1645
1648
|
width: 15px;
|
|
1649
|
+
height: 15px;
|
|
1646
1650
|
padding: 1px;
|
|
1647
1651
|
border-radius: 2px;
|
|
1648
1652
|
color: grey;
|
|
1649
1653
|
cursor: pointer;
|
|
1650
1654
|
}
|
|
1651
1655
|
|
|
1652
|
-
div.jss_filters_icon:hover
|
|
1656
|
+
div.jss_filters_icon:hover,
|
|
1657
|
+
div.jss_filters_icon.jss_filters_active {
|
|
1653
1658
|
color: white;
|
|
1654
1659
|
background-color: #d92b04;
|
|
1655
1660
|
}
|
|
@@ -1660,14 +1665,9 @@ div.jss_filters_icon::before {
|
|
|
1660
1665
|
font-size: 15px;
|
|
1661
1666
|
}
|
|
1662
1667
|
|
|
1663
|
-
div.jss_filters_icon.jss_filters_active {
|
|
1664
|
-
color: white;
|
|
1665
|
-
background-color: #d92b04;
|
|
1666
|
-
}
|
|
1667
|
-
|
|
1668
1668
|
div.jss_filters_icon.jss_filters_active:hover {
|
|
1669
1669
|
color: grey;
|
|
1670
|
-
background-color:
|
|
1670
|
+
background-color: #f1f1f1;
|
|
1671
1671
|
}
|
|
1672
1672
|
|
|
1673
1673
|
div.jss_filters_icon.jss_filters_active::before {
|
package/package.json
CHANGED