mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-13 02:37:24 +01:00
393e18a3c9
Added visual HTML editor for editing HTML on the footer and home pages. This editor is based on the open source CKEditor a Smart Visual Text Editor for HTML coded in JavaScript. Read the Blog post about this topic for more info about this feature here: https://blog.littlelink-custom.com/visual-html-editor/
19 lines
231 B
CSS
Vendored
19 lines
231 B
CSS
Vendored
.cke_dialog_open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cke_dialog_container {
|
|
position: fixed;
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 10010;
|
|
}
|
|
|
|
.cke_dialog_body {
|
|
position: relative;
|
|
}
|