mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-25 16:09:42 +01:00
75 lines
1.4 KiB
HTML
75 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8" />
|
|
<title>Note Diff Preview</title>
|
|
<link rel="stylesheet" href="./index.css">
|
|
<link id="dark_sheet" disabled rel="stylesheet" href="./dist/skins/notesnook-dark/content.min.css">
|
|
<link id="light_sheet" disabled rel="stylesheet" href="./dist/skins/notesnook/content.min.css">
|
|
<style>
|
|
span.diff-del {
|
|
background-color: #FDB0C0;
|
|
}
|
|
|
|
span.diff-ins {
|
|
background-color: #CAFFFB;
|
|
}
|
|
|
|
pre.codeblock {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
img {
|
|
max-width: 100% !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.tox .tox-edit-area__iframe {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
body {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
iframe {
|
|
max-width: 100% !important;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
table {
|
|
display: block !important;
|
|
overflow-x: auto !important;
|
|
white-space: nowrap !important;
|
|
max-width: 100% !important;
|
|
width: 100% !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
td {
|
|
min-width: 20vw !important;
|
|
}
|
|
.htmldiff_div {
|
|
padding:12px !important;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div
|
|
class="htmldiff_div"
|
|
>
|
|
|
|
</div>
|
|
<script src="./listeners.js"></script>
|
|
<script src="./constants.js"></script>
|
|
<script>
|
|
attachMessageListener()
|
|
</script>
|
|
</body>
|
|
|
|
</html> |