jspreadsheet 11.25.0 → 11.25.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 +582 -584
- package/dist/jspreadsheet.css +17 -12
- package/package.json +1 -1
package/dist/jspreadsheet.css
CHANGED
|
@@ -721,6 +721,23 @@
|
|
|
721
721
|
opacity: 1;
|
|
722
722
|
}
|
|
723
723
|
|
|
724
|
+
.jss_border_cloning {
|
|
725
|
+
border: 1px dashed #000;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.jss_border_ctrl {
|
|
729
|
+
border: 2px solid #fff;
|
|
730
|
+
outline: 1px solid #777777;
|
|
731
|
+
outline-offset: -1px;
|
|
732
|
+
background-color: #5b5b5b50;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.jss_border_reset {
|
|
736
|
+
border: 1px solid #777;
|
|
737
|
+
background-color: #fff;
|
|
738
|
+
z-index: 3;
|
|
739
|
+
}
|
|
740
|
+
|
|
724
741
|
.jss_border_copying_hide_left {
|
|
725
742
|
background-size: 0 0, 8px 1px, 0 0, 0 0 !important;
|
|
726
743
|
|
|
@@ -735,18 +752,6 @@
|
|
|
735
752
|
}
|
|
736
753
|
}
|
|
737
754
|
|
|
738
|
-
|
|
739
|
-
.jss_border_cloning {
|
|
740
|
-
border: 1px dashed #000;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.jss_border_ctrl {
|
|
744
|
-
border: 2px solid #fff;
|
|
745
|
-
outline: 1px solid #777777;
|
|
746
|
-
outline-offset: -1px;
|
|
747
|
-
background-color: #5b5b5b50;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
755
|
.jss_cursor {
|
|
751
756
|
background-color: #eee;
|
|
752
757
|
}
|
package/package.json
CHANGED