jspreadsheet 11.8.1 → 11.9.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/index.js +562 -563
- package/dist/jspreadsheet.css +9 -10
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
z-index: 4;
|
|
140
140
|
background-repeat: no-repeat;
|
|
141
141
|
background-position: center right 0;
|
|
142
|
-
line-height:
|
|
142
|
+
line-height: normal;
|
|
143
143
|
font-size: 1em;
|
|
144
144
|
font-weight: normal;
|
|
145
145
|
}
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.jss > thead > tr > th:first-child {
|
|
158
|
-
box-shadow: 1px
|
|
158
|
+
box-shadow: 1px 1px 0 0 #ccc;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
.jss > thead > tr > th.selected {
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
border-bottom:1px solid transparent;
|
|
186
186
|
box-sizing: border-box;
|
|
187
187
|
padding: 4px;
|
|
188
|
-
line-height:
|
|
188
|
+
line-height: normal;
|
|
189
189
|
height: 24px;
|
|
190
190
|
text-align: center;
|
|
191
191
|
white-space: pre;
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
pointer-events: none;
|
|
411
411
|
box-sizing: border-box;
|
|
412
412
|
white-space: pre-wrap;
|
|
413
|
-
line-height:
|
|
413
|
+
line-height: normal;
|
|
414
414
|
outline: none;
|
|
415
415
|
opacity: 0;
|
|
416
416
|
}
|
|
@@ -1421,7 +1421,7 @@
|
|
|
1421
1421
|
}
|
|
1422
1422
|
|
|
1423
1423
|
.jss div {
|
|
1424
|
-
line-height:
|
|
1424
|
+
line-height: normal;
|
|
1425
1425
|
}
|
|
1426
1426
|
|
|
1427
1427
|
@-webkit-keyframes spin {
|
|
@@ -1639,14 +1639,13 @@
|
|
|
1639
1639
|
.jss_actions {
|
|
1640
1640
|
float: right;
|
|
1641
1641
|
display: block;
|
|
1642
|
-
height: 16px;
|
|
1643
1642
|
margin-left: 4px;
|
|
1644
1643
|
}
|
|
1645
1644
|
|
|
1646
1645
|
div.jss_filters_icon {
|
|
1647
|
-
font-size:
|
|
1648
|
-
width:
|
|
1649
|
-
height:
|
|
1646
|
+
font-size: 13px;
|
|
1647
|
+
width: 13px;
|
|
1648
|
+
height: 13px;
|
|
1650
1649
|
padding: 1px;
|
|
1651
1650
|
border-radius: 2px;
|
|
1652
1651
|
color: grey;
|
|
@@ -1662,7 +1661,7 @@ div.jss_filters_icon.jss_filters_active {
|
|
|
1662
1661
|
div.jss_filters_icon::before {
|
|
1663
1662
|
font-family: "Material Icons";
|
|
1664
1663
|
content: 'filter_list';
|
|
1665
|
-
font-size:
|
|
1664
|
+
font-size: 13px;
|
|
1666
1665
|
}
|
|
1667
1666
|
|
|
1668
1667
|
div.jss_filters_icon.jss_filters_active:hover {
|
package/package.json
CHANGED