forked from christophersmith262/bolt-ckeditor5-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CKEditor 5 – Bolt Button Example</title>
<link rel="stylesheet" type="text/css" href="bolt/public/en/bolt-global.css">
<link rel="stylesheet" type="text/css" href="bolt/public/en/bolt-components-critical-fonts.css">
<style>
.ck span.ck-editor__nested-editable:hover {
cursor: text !important;
}
.ck span.ck-editor__nested-editable:focus {
display: inline-block !important;
background: inherit !important;
min-width: 1rem !important;
min-height: 1rem !important;
}
</style>
</head>
<body>
<div id="editor">
<h1>Teaser header.</h1>
<p>Short-form text to appear under the header.</p>
<bolt-button><span>change me!</span></bolt-button>
</div>
<script src="dist/bundle.js"></script>
<script src="bolt/public/en/bolt-global.js"></script>
</body>
</html>