Fullscreen Editor
Site Infrastructure / Fullscreen Editor

[view modes: view]
[edit modes: edit full_edit info]
[direct modes: delete]

[begin mode full_edit][suppress_template()]
<!DOCTYPE html>
<html>
<head>
	<title>[_title] (fullscreen)</title>
<style type="text/css">
body, input, textarea {
	background: #202020;
	color: #a0a0a0;
	border: none;
	padding: 0px;
	margin: 0px;
	font-family: "Consolas", "Monaco", "Courier New", "Courier", monospace;
	font-size: 16px;
}
body, html {
	height: 100%;
	overflow: hidden;
}
</style>
</head>
<body>[
	if(_params.title != "") _title = _params.title;
	if(_params.body != "") _body = _params.body;
]<form action="/" method="post"><input type="hidden" name="id" value="[_id]"><input type="hidden" name="mode" value="full_edit">
<div style="height: 30px; margin: 0px; padding: 0px; position: absolute; left: 0; right: 0; top: 0; border-bottom: 2px #404040 solid;"><input type="text" style="width: 95%; height: 30px; padding: 0px; margin: 0px; border: 0px;" name="title" value="[_title]"><input type="submit" style="width: 5%; height: 30px; padding: 0px; margin: 0px; border: 0px; background: #303030;" value="Save"></div>
<div style="position: absolute; left: 0; right: 0; top: 31px; bottom: 0;">
<textarea style="border: 0px; width: 100%; height: 100%;">[edit_display(_body)]</textarea>
</div>
</form>
</body>
</html>
[end mode full_edit]