@sv-print/hiprint 0.1.16 → 0.1.18
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 +152 -147
- package/dist/index.mjs +6640 -6540
- package/dist/index.umd.js +152 -147
- package/dist/print-lock.css +11 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/print-lock.css
CHANGED
|
@@ -162,6 +162,10 @@ hiprint-printPanel {
|
|
|
162
162
|
font-weight: 700;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
+
table.hiprint-printElement-tableTarget {
|
|
166
|
+
width: 100%;
|
|
167
|
+
}
|
|
168
|
+
|
|
165
169
|
.hiprint-printElement-tableTarget,
|
|
166
170
|
.hiprint-printElement-tableTarget tr,
|
|
167
171
|
.hiprint-printElement-tableTarget td {
|
|
@@ -213,9 +217,15 @@ hiprint-printPanel {
|
|
|
213
217
|
.hiprint-printElement-tableTarget-border-td-none td {
|
|
214
218
|
border: 0px solid;
|
|
215
219
|
}
|
|
216
|
-
.hiprint-printElement-tableTarget-border-td-all td:not(:last-child) {
|
|
220
|
+
.hiprint-printElement-tableTarget-border-td-all td:not(:nth-last-child(-n + 2)) {
|
|
217
221
|
border-right: 1px solid;
|
|
218
222
|
}
|
|
223
|
+
.hiprint-printElement-tableTarget-border-td-all td:last-child {
|
|
224
|
+
border-left: 1px solid;
|
|
225
|
+
}
|
|
226
|
+
.hiprint-printElement-tableTarget-border-td-all td:last-child:first-child {
|
|
227
|
+
border-left: none;
|
|
228
|
+
}
|
|
219
229
|
|
|
220
230
|
/*.hiprint-printElement-tableTarget tr,*/
|
|
221
231
|
.hiprint-printElement-tableTarget td {
|