2017-11-03 01:26:08 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-11-04 17:42:20 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-02-24 12:17:37 +02: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 19:51:55 +02:00
|
|
|
<title>Joplin</title>
|
2017-11-04 18:40:34 +02:00
|
|
|
<link rel="stylesheet" href="style.css">
|
2020-09-15 15:01:07 +02:00
|
|
|
<link rel="stylesheet" href="style/icons/style.css">
|
2020-05-17 16:34:42 +02:00
|
|
|
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
|
2017-11-28 00:50:46 +02:00
|
|
|
<link rel="stylesheet" href="node_modules/react-datetime/css/react-datetime.css">
|
2017-12-24 10:36:31 +02:00
|
|
|
<link rel="stylesheet" href="node_modules/smalltalk/css/smalltalk.css">
|
2020-09-15 15:01:07 +02:00
|
|
|
<link rel="stylesheet" href="node_modules/roboto-fontface/css/roboto/roboto-fontface.css">
|
2020-09-05 01:02:20 +02:00
|
|
|
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css">
|
2020-03-10 01:24:57 +02:00
|
|
|
|
2017-12-24 10:36:31 +02:00
|
|
|
<style>
|
|
|
|
.smalltalk {
|
|
|
|
background-color: rgba(0,0,0,.5);
|
|
|
|
}
|
|
|
|
.smalltalk input {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
.smalltalk .page {
|
|
|
|
max-width: 30em;
|
|
|
|
}
|
2018-03-20 01:04:48 +02: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 10:36:31 +02:00
|
|
|
</style>
|
2017-11-04 17:42:20 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-11-04 21:46:37 +02:00
|
|
|
<div id="react-root"></div>
|
2017-11-05 02:17:48 +02:00
|
|
|
<script src="main-html.js"></script>
|
2017-11-21 21:31:21 +02:00
|
|
|
<style>
|
|
|
|
/* Disable dragging of links (which are often buttons) */
|
|
|
|
a:not([draggable=true]), img:not([draggable=true]) {
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
user-drag: none;
|
|
|
|
}
|
|
|
|
</style>
|
2017-11-04 17:42:20 +02:00
|
|
|
</body>
|
2020-06-06 17:00:20 +02:00
|
|
|
</html>
|