vg-print 1.0.317 → 1.0.319
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/README.md +1 -1
- package/dist/css/print-lock.css +17 -2
- package/dist/style.css +1 -1
- package/dist/vg-print.es.js +18327 -18107
- package/dist/vg-print.umd.js +364 -249
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/css/print-lock.css
CHANGED
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
|
|
164
164
|
.hiprint-printElement-tableTarget, .hiprint-printElement-tableTarget tr, .hiprint-printElement-tableTarget td {
|
|
165
165
|
border-color: rgb(0,0,0);
|
|
166
|
-
border-style: none
|
|
166
|
+
/*border-style: none;*/
|
|
167
167
|
/*border: 1px solid rgb(0,0,0);*/
|
|
168
168
|
font-weight: normal;
|
|
169
169
|
direction: ltr;
|
|
@@ -185,6 +185,21 @@
|
|
|
185
185
|
height: 18pt;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
+
/* 边框样式(用于打印时保持边框) */
|
|
189
|
+
table.hiprint-printElement-tableTarget { width: 100%; }
|
|
190
|
+
.hiprint-printElement-tableTarget-border-all { border: 1px solid; }
|
|
191
|
+
.hiprint-printElement-tableTarget-border-none { border: 0px solid; }
|
|
192
|
+
.hiprint-printElement-tableTarget-border-lr { border-left: 1px solid; border-right: 1px solid; }
|
|
193
|
+
.hiprint-printElement-tableTarget-border-left { border-left: 1px solid; }
|
|
194
|
+
.hiprint-printElement-tableTarget-border-right { border-right: 1px solid; }
|
|
195
|
+
.hiprint-printElement-tableTarget-border-tb { border-top: 1px solid; border-bottom: 1px solid; }
|
|
196
|
+
.hiprint-printElement-tableTarget-border-top { border-top: 1px solid; }
|
|
197
|
+
.hiprint-printElement-tableTarget-border-bottom { border-bottom: 1px solid; }
|
|
198
|
+
.hiprint-printElement-tableTarget-border-td-none td { border: 0px solid; }
|
|
199
|
+
.hiprint-printElement-tableTarget-border-td-all td:not(:nth-last-child(-n+2)) { border-right: 1px solid; }
|
|
200
|
+
.hiprint-printElement-tableTarget-border-td-all td { border-left: 1px solid; }
|
|
201
|
+
.hiprint-printElement-tableTarget-border-td-all td:last-child:first-child { border-left: none; }
|
|
202
|
+
|
|
188
203
|
.hiprint-printPaper .hiprint-paperNumber {
|
|
189
204
|
font-size: 9pt;
|
|
190
205
|
}
|
|
@@ -279,4 +294,4 @@
|
|
|
279
294
|
.hiprint-gridColumnsFooter {
|
|
280
295
|
text-align: left;
|
|
281
296
|
clear: both;
|
|
282
|
-
}
|
|
297
|
+
}
|