File modules/template_engine/components/html/component_editor/editor.css

Last commit: Sun Oct 13 13:17:32 2024 +0200	Jan Dankert	New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future.
1 .editor__text-editor { 2 width: 100%; 3 height: 300px; 4 } 5 /* ACE-Editor */ 6 textarea.editor__code-editor { 7 display: none; 8 /* Textarea nicht anzeigen, da durch Editor im DIV ersetzt */ 9 } 10 div.editor__code-editor { 11 position: absolute; 12 height: 500px; 13 width: 100%; 14 font-size: 14px; 15 z-index: 256; 16 } 17 textarea.editor__text-editor, 18 textarea.editor__wiki-editor, 19 textarea.editor__html-editor { 20 width: 100%; 21 } 22 a.editorlink:active, 23 a.editorlink:hover { 24 font-weight: normal; 25 text-decoration: none; 26 } 27 a.editorlink:link, 28 a.editorlink:visited { 29 font-weight: normal; 30 text-decoration: none; 31 } 32
Download modules/template_engine/components/html/component_editor/editor.css
History Sun, 13 Oct 2024 13:17:32 +0200 Jan Dankert New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future.