1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<?php
/*
This file contains the class definitions used by the wiki module.
Include these in your theme file, and modify them to your tastes.
*/
?>
<!-- <div> that surrounds entire wiki output -->
.wiki {
background-color: #FFFFFF;
padding: 6px;
}
<!-- action classes that work with the wiki <div> -->
.view {
}
.edit {
}
.info {
}
.links {
}
<!-- Defines the <div> tag surrounding the backlinks feature. -->
.wiki_backlinks {
border-top: 2px #EEEEEE solid;
}
.indent {
}
<!-- defines the h2 class for the title -->
h2.page.title {
border-bottom: 2px #EEEEEE solid;
}
<!-- Defines the table used for the version information -->
.version-info {
}
<!-- Defines the table cell used for the various version actions -->
.action-links {
}
<!-- Defines the table cell used for the various version actions -->
.control-links {
}
<!-- Defines the table row used for the version version row -->
.page-version {
}
<!-- Defines the table row used for the version author row -->
.page-author {
}
<!-- Defines the table row used for the version created row -->
.page-created {
}
<!-- Defines the table row used for the version lastmodified row -->
.page-lastmodified {
}
<!-- Defines the table row used for the version refs row -->
.page-refs {
}
<!-- Defines the table row used for the version flags row -->
.page-flags {
}
<!-- Defines the table row used for the version meta row -->
.page-meta {
}
<!-- Defines the <div> used for the chunked results -->
.chunked-result {
}
<!-- Defines the <div> used for the edit box -->
.edit-box {
}
<!-- Defines the <div> used for the image upload form -->
.image-upload {
}
<!-- Defines the <div> used for the preview page -->
.preview {
}
<!-- Defines the <span> used for the search not found -->
.NotFound {
}
<!-- Defines the <div> used for the todo list -->
.ewiki_page_todolist {
}
<!-- Defines the <table> used for the diff function -->
.diff {
}
|