File size: 2,227 Bytes
1e92f2d |
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ant Design Visual Diff Report</title>
<link href="https://unpkg.com/antd@latest/dist/reset.css" rel="stylesheet" />
<style>
body {
padding-top: 16px;
padding-bottom: 16px;
}
/* figcaption */
figcaption {
color: #a3a3a3;
text-align: center;
}
figure {
cursor: pointer;
}
/* Table Styles */
table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
table > thead {
position: sticky;
top: 0;
}
th,
td {
padding: 8px;
text-align: left;
vertical-align: top;
border-bottom: 1px solid #ddd;
width: 33%;
}
td img {
max-width: 100%;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
/* Hover Effect */
tr:hover {
background-color: #e5e5e5;
}
/* Responsive Table */
@media screen and (1px <= width <= 600px) {
table {
border: 0;
}
table > thead {
position: unset;
}
th,
td {
width: 100%;
display: block;
padding: 6px;
border: none;
}
td:last-child {
border-bottom: 3px dashed darkgray;
}
th {
text-align: left;
background-color: transparent;
}
tr:nth-child(even) {
background-color: transparent;
}
tr:nth-child(odd) {
background-color: transparent;
}
tr:hover {
background-color: transparent;
}
}
</style>
</head>
<body>
{{reportContent}}
<script>
window.addEventListener('click', function (e) {
if (e.target.tagName === 'FIGCAPTION') {
// get previous sibling
const img = e.target.previousElementSibling;
if (img.tagName === 'IMG' && img.src) {
window.open(img.src, '_blank');
}
}
if (e.target.tagName === 'IMG' && e.target.src) {
window.open(e.target.src, '_blank');
}
});
</script>
</body>
</html>
|