forked from boldreports/javascript-reporting-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbarcode.reportitem.css
More file actions
62 lines (51 loc) · 1.54 KB
/
barcode.reportitem.css
File metadata and controls
62 lines (51 loc) · 1.54 KB
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
57
58
59
60
61
62
.e-rptdesigner-designarea.e-waitingpopup .customitem-barcode {
background-image: url('images/barcode.png');
}
.e-rptdesigner-designarea.e-waitingpopup .customitem-qrbarcode {
background-image: url('images/qrbarcode.png');
}
.e-rptdesigner-designarea:not(.e-waitingpopup) .customitem-barcode {
background-image: url('images/barcode.svg');
}
.e-rptdesigner-designarea:not(.e-waitingpopup) .customitem-qrbarcode {
background-image: url('images/qrbarcode.svg');
}
.e-rptdesigner-designarea.e-waitingpopup .customitem-barcode,
.e-rptdesigner-designarea.e-waitingpopup .customitem-qrbarcode {
background-position: 50% 50%;
background-repeat: no-repeat;
height: 25px;
}
.e-rptdesigner-designarea:not(.e-waitingpopup) .customitem-barcode,
.e-rptdesigner-designarea:not(.e-waitingpopup) .customitem-qrbarcode {
background-repeat: no-repeat;
height: 42px;
background-position: center;
}
.e-rptdesigner-itempanel-dragelements .customitem-barcode,
.e-rptdesigner-itempanel-dragelements .customitem-qrbarcode {
margin-top: 0px !important;
height: 100% !important;
}
.e-rptdesigner-loaderDiv .e-rptdesigner-spinnerDiv {
box-sizing: content-box !important;
-moz-box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}