forked from hldgaofeng/oralcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
56 lines (50 loc) · 828 Bytes
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
body, table, button, select, input {
font-size: 16px;
font-family: 宋体;
}
/*
body {
padding:0px;
margin: 0px;
}
*/
[v-cloak] {
display:none;
}
tr.printonly {
display:none;
}
@media print {
@page {
size: 210mm 297mm; /* or size: 794px 1123px; */
size: 297mm 420mm; /* or size: 1123px 1588px; */
}
div.noprint {
display:none;
}
tr.printonly {
display:table-row;
}
div.print-repeat {
}
#app {
width:auto;
}
}
/*
.cmdbar {
background-color: lightgray;
}
.cmdbar form {
display:inline-block;
}
.cmdbar label {
display: block;
margin: 5px;
}
.cmdbar input, .cmdbar select {
text-align:right;
}
*/
tr.break_before { page-break-before: always; }
tr.break_after { page-break-after: always; }