mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
39fcb981b8
I've left out stuff that didn't seem necessary ... including a lot of the Wiki plugins which were quote large... I'm not sure if this is currently working ... I'm about to try it out.
108 lines
1.9 KiB
PHP
108 lines
1.9 KiB
PHP
<?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 <?php echo $THEME->borders?> solid;
|
|
}
|
|
|
|
.indent {
|
|
}
|
|
|
|
<!-- defines the h2 class for the title -->
|
|
h2.page.title {
|
|
border-bottom: 2px <?php echo $THEME->borders?> 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 {
|
|
}
|