1/*
2Makes the default template display much better with this plugin.
3If using other templates, you may want to make your own adjustments.
4
5This moves the section edit button down onto the same "line" as the header
6that it belongs to.
7
8Note: Adding the 'body' selector makes these rules more specific, and so
9ensures that they will augment DokuWiki's 'secedit' css rules. You should
10be able to override this by adding the 'html' selector to the 'secedit' css
11rules in your template.
12*/
13
14body div.dokuwiki div.secedit {
15  overflow: visible;
16}
17
18body div.dokuwiki div.secedit input.button {
19  margin-top: 1.25em;
20}
21
22/* Hiding the header will stop Dokuwiki from displaying special content */
23body div.dokuwiki h0 {
24  display: none;
25}
26