2017-11-02 23:26:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-11-04 15:42:20 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-02-24 10:17:37 +00:00
|
|
|
<!--
|
|
|
|
No CPS because we need to allow everything due to some dependencies (eg. depd, which comes from maybe Node or Electron
|
|
|
|
uses 'eval'.
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval'">
|
|
|
|
-->
|
2017-11-08 17:51:55 +00:00
|
|
|
<title>Joplin</title>
|
2021-10-03 16:00:49 +01:00
|
|
|
<link rel="stylesheet" href="style.min.css">
|
2020-09-15 14:01:07 +01:00
|
|
|
<link rel="stylesheet" href="style/icons/style.css">
|
2021-12-23 12:04:09 +01:00
|
|
|
<link rel="stylesheet" href="vendor/lib/@fortawesome/fontawesome-free/css/all.min.css">
|
|
|
|
<link rel="stylesheet" href="vendor/lib/react-datetime/css/react-datetime.css">
|
|
|
|
<link rel="stylesheet" href="vendor/lib/smalltalk/css/smalltalk.css">
|
|
|
|
<link rel="stylesheet" href="vendor/lib/roboto-fontface/css/roboto/roboto-fontface.css">
|
|
|
|
<link rel="stylesheet" href="vendor/lib/codemirror/lib/codemirror.css">
|
2020-03-09 23:24:57 +00:00
|
|
|
|
2017-12-24 09:36:31 +01:00
|
|
|
<style>
|
|
|
|
.smalltalk {
|
|
|
|
background-color: rgba(0,0,0,.5);
|
|
|
|
}
|
|
|
|
.smalltalk input {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
.smalltalk .page {
|
|
|
|
max-width: 30em;
|
|
|
|
}
|
2018-03-19 23:04:48 +00:00
|
|
|
mark {
|
|
|
|
background: #CF3F00;
|
|
|
|
color: white;
|
|
|
|
}
|
2021-04-30 17:03:03 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Adds support for RTL text in the note body. It automatically detects the direction using the content.
|
|
|
|
Issue: https://github.com/laurent22/joplin/issues/3991
|
|
|
|
*/
|
|
|
|
.CodeMirror-line {
|
|
|
|
unicode-bidi: plaintext;
|
|
|
|
}
|
2017-12-24 09:36:31 +01:00
|
|
|
</style>
|
2017-11-04 15:42:20 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-11-04 19:46:37 +00:00
|
|
|
<div id="react-root"></div>
|
2017-11-05 00:17:48 +00:00
|
|
|
<script src="main-html.js"></script>
|
2017-11-21 19:31:21 +00:00
|
|
|
<style>
|
|
|
|
/* Disable dragging of links (which are often buttons) */
|
|
|
|
a:not([draggable=true]), img:not([draggable=true]) {
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
}
|
|
|
|
</style>
|
2017-11-04 15:42:20 +00:00
|
|
|
</body>
|
2020-06-06 09:00:20 -06:00
|
|
|
</html>
|