-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
66 lines (59 loc) · 1.56 KB
/
popup.html
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
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Attachments</title>
<script src="libs/qrious.min.js"></script>
<script src="libs/pdf.min.js"></script>
<script src="libs/purify.min.js"></script>
<style>
body {
width: 700px; /* Kompaktere Breite für das Popup */
margin: 0;
padding: 10px;
font-family: Arial, sans-serif;
font-size: 15px; /* Kleinere Schrift für mehr Platz */
box-sizing: border-box;
}
.invoice-container {
display: flex;
justify-content: space-between;
gap: 10px; /* Weniger Abstand zwischen den Blöcken */
margin: 10px 0;
}
.invoice-block {
flex: 1;
min-width: 200px; /* Mindestbreite jedes Blocks */
border: 1px solid #ccc;
padding: 8px; /* Weniger Padding für kompaktere Darstellung */
border-radius: 5px;
background-color: #f9f9f9;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.invoice-block h3 {
margin-top: 0;
font-size: 1em; /* Kleinere Überschrift */
color: #333;
text-align: center;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}
.invoice-block ul {
list-style: none;
padding: 0;
margin: 0;
}
.invoice-block ul li {
margin-bottom: 3px; /* Weniger Abstand zwischen den Listenelementen */
font-size: 0.9em; /* Kleinere Schrift für Listenelemente */
color: #555;
}
</style>
</head>
<body>
<div id="attachments-list">
Lade Anhänge...
</div>
<script src="popup.js"></script>
</body>
</html>