summaryrefslogtreecommitdiff
path: root/admin/static
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2020-06-02 18:33:32 +0200
committerDirk Engling <erdgeist@erdgeist.org>2020-06-02 18:33:32 +0200
commitb2fff1c0cb13d720e305f7835044da7360aab273 (patch)
tree3d3b3062e87c9f16c5756ba723e22134e5a24d05 /admin/static
parent6c61efddf9080194115106d6eaec7e57df66e1a2 (diff)
Add simple admin interface testHEADmaster
Diffstat (limited to 'admin/static')
-rw-r--r--admin/static/cccms.js7
-rw-r--r--admin/static/style.css27
2 files changed, 34 insertions, 0 deletions
diff --git a/admin/static/cccms.js b/admin/static/cccms.js
new file mode 100644
index 00000000..873007ce
--- /dev/null
+++ b/admin/static/cccms.js
@@ -0,0 +1,7 @@
1function toggle_hide(oid) {
2 el = document.getElementById(oid);
3 el.classList.toggle('hidden');
4}
5
6function load_object(oid) {
7}
diff --git a/admin/static/style.css b/admin/static/style.css
new file mode 100644
index 00000000..1e66d2ef
--- /dev/null
+++ b/admin/static/style.css
@@ -0,0 +1,27 @@
1.hidden {
2 display: none;
3}
4
5.tree li {
6 margin: 0;
7 list-style-type: none;
8}
9
10.tree .entry_node {
11 cursor: pointer;
12}
13
14.tree .entry_node:after {
15 content: ' >>';
16}
17
18#edit_update label {
19 display: inline-block;
20 min-width: 8em;
21}
22
23#page_teaser, #page_content {
24 margin: 1em;
25 width: 100%;
26 min-height: 4em;
27}