はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
@@ -0,0 +1,19 @@
I) starter template CSS version
<https://github.com/selfthinker/dokuwiki_template_starter/zipball/master> at
2012-10-17 01:17 GMT+1
II) Modifications
- I edited _links.css, _media_fullscreen.css, _toc.css:
All url(images/[...]) rules were changed (-> "static/3rd/dokuwiki/"). To
make this clear, a comment was added at the top of the files.
- "static/3rd/dokuwiki/bullet|close|open.gif" were re-saved as PNG.
III) Notes
The css files were taken from the "starter template". See the following for
more information:
- <http://blog.andreas-haerter.com/2011/03/16/how-to-create-a-maintainable-dokuwiki-template>
- <https://www.dokuwiki.org/template:starter>
- ../../../README
@@ -0,0 +1,59 @@
/**
* This file provides styles for the Administration overview
* (?do=admin).
*/
.dokuwiki ul.admin_tasks {
float: left;
width: 40%;
list-style-type: none;
font-size: 1.125em;
}
[dir=rtl] .dokuwiki ul.admin_tasks {
float: right;
}
.dokuwiki ul.admin_tasks li {
padding-left: 35px;
margin: 0 0 1em 0;
font-weight: bold;
list-style-type: none;
background: transparent none no-repeat scroll 0 0;
color: inherit;
}
[dir=rtl] .dokuwiki ul.admin_tasks li {
padding-left: 0;
padding-right: 35px;
background-position: right 0;
}
.dokuwiki ul.admin_tasks li.admin_acl {
background-image: url(../../images/admin/acl.png);
}
.dokuwiki ul.admin_tasks li.admin_usermanager {
background-image: url(../../images/admin/usermanager.png);
}
.dokuwiki ul.admin_tasks li.admin_plugin {
background-image: url(../../images/admin/plugin.png);
}
.dokuwiki ul.admin_tasks li.admin_config {
background-image: url(../../images/admin/config.png);
}
.dokuwiki ul.admin_tasks li.admin_revert {
background-image: url(../../images/admin/revert.png);
}
.dokuwiki ul.admin_tasks li.admin_popularity {
background-image: url(../../images/admin/popularity.png);
}
/* DokuWiki version below */
.dokuwiki #admin__version {
clear: left;
float: right;
color: __text_neu__;
background-color: inherit;
}
[dir=rtl] .dokuwiki #admin__version {
clear: right;
float: left;
}
@@ -0,0 +1,65 @@
/**
* This file provides styles for the diff view, which shows you
* differences between two versions of a page (?do=diff).
*/
.dokuwiki table.diff {
width: 100%;
border-width: 0;
}
.dokuwiki table.diff th,
.dokuwiki table.diff td {
vertical-align: top;
padding: 0;
border-width: 0;
/* no style.ini colours because deleted and added lines have a fixed background colour */
background-color: #fff;
color: #333;
}
/* table header */
.dokuwiki table.diff th {
border-bottom: 1px solid __border__;
font-size: 110%;
width: 50%;
font-weight: normal;
}
.dokuwiki table.diff th a {
font-weight: bold;
}
.dokuwiki table.diff th span.user {
font-size: .9em;
}
.dokuwiki table.diff th span.sum {
font-size: .9em;
font-weight: bold;
}
.dokuwiki table.diff th.minor {
color: #999;
}
/* table body */
.dokuwiki table.diff td {
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
}
.dokuwiki table.diff td.diff-blockheader {
font-weight: bold;
}
.dokuwiki table.diff .diff-addedline {
background-color: #cfc;
color: inherit;
}
.dokuwiki table.diff .diff-deletedline {
background-color: #fdd;
color: inherit;
}
.dokuwiki table.diff td.diff-context {
background-color: #eee;
color: inherit;
}
.dokuwiki table.diff td.diff-addedline strong,
.dokuwiki table.diff td.diff-deletedline strong {
color: #f00;
background-color: inherit;
font-weight: bold;
}
@@ -0,0 +1,153 @@
/**
* This file provides styles for the edit view (?do=edit), preview
* and section edit buttons.
*/
/* edit view
********************************************************************/
.dokuwiki div.editBox {
}
/*____________ toolbar ____________*/
.dokuwiki div.toolbar {
margin-bottom: .5em;
overflow: hidden;
}
#draft__status {
float: right;
color: __text_alt__;
background-color: inherit;
}
[dir=rtl] #draft__status {
float: left;
}
#tool__bar {
float: left;
}
[dir=rtl] #tool__bar {
float: right;
}
/* buttons inside of toolbar */
.dokuwiki div.toolbar button.toolbutton {
}
/* picker popups (outside of .dokuwiki) */
div.picker {
width: 300px;
border: 1px solid __border__;
background-color: __background_alt__;
color: inherit;
}
/* picker for headlines */
div.picker.pk_hl {
width: auto;
}
/* buttons inside of picker */
div.picker button.pickerbutton,
div.picker button.toolbutton {
padding: .1em .35em;
border-width: 0;
}
/*____________ edit textarea ____________*/
.dokuwiki textarea.edit {
/* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
width: 700px;
min-width: 100%;
max-width: 100%;
margin-bottom: .5em;
}
/*____________ below the textarea ____________*/
.dokuwiki #wiki__editbar, /* old, until 2012-01-25 */
.dokuwiki div.editBar /* new */ {
overflow: hidden;
margin-bottom: .5em;
}
/* size and wrap controls */
#size__ctl {
float: right;
}
[dir=rtl] #size__ctl {
float: left;
}
#size__ctl img {
cursor: pointer;
}
/* edit buttons */
.dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */
.dokuwiki div.editBar .editButtons /* new */ {
display: inline;
margin-right: 1em;
}
[dir=rtl] .dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */
[dir=rtl] .dokuwiki .editBar .editButtons /* new */ {
margin-right: 0;
margin-left: 1em;
}
.dokuwiki #wiki__editbar .editButtons input, /* old, until 2012-01-25 */
.dokuwiki div.editBar .editButtons input /* new */ {
}
/* summary input and minor changes checkbox */
.dokuwiki #wiki__editbar .summary, /* old, until 2012-01-25 */
.dokuwiki div.editBar .summary /* new */ {
display: inline;
}
.dokuwiki #wiki__editbar .summary label, /* old, until 2012-01-25 */
.dokuwiki div.editBar .summary label /* new */ {
vertical-align: middle;
white-space: nowrap;
}
.dokuwiki #wiki__editbar .summary label span, /* old, until 2012-01-25 */
.dokuwiki div.editBar .summary label span /* new */ {
vertical-align: middle;
}
.dokuwiki #wiki__editbar .summary input, /* old, until 2012-01-25 */
.dokuwiki div.editBar .summary input /* new */ {
}
/* change background colour if summary is missing */
.dokuwiki #wiki__editbar .summary input.missing, /* old, until 2012-01-25 */
.dokuwiki div.editBar .summary input.missing /* new */ {
color: __text__;
background-color: #ffcccc;
}
/* preview
********************************************************************/
.dokuwiki div.preview {
border: dotted __border__;
border-width: .2em 0;
padding: 1.4em 0;
margin-bottom: 1.4em;
}
/* section edit buttons
********************************************************************/
.dokuwiki .secedit {
float: right;
margin-top: -1.4em;
}
[dir=rtl] .dokuwiki .secedit {
float: left;
}
.dokuwiki .secedit input.button {
font-size: 75%;
}
/* style for section highlighting */
.dokuwiki div.section_highlight {
margin: 0 -1em; /* negative side margin = side padding + side border */
padding: 0 .5em;
border: solid __background_alt__;
border-width: 0 .5em;
}
@@ -0,0 +1,116 @@
/**
* This file provides the styles for the file uploader
* used in the media manager (both fullscreen and popup).
*/
.qq-uploader {
position: relative;
width: 100%;
}
.qq-uploader .error {
color: #f00;
background-color: #fff;
}
/* select file button */
/* as this is not a real button, but functions as a button,
it should be styled the same way as your other buttons,
preferably in the same place, so just add '.qq-upload-button' to those styles */
.qq-upload-button {
display: inline-block;
text-decoration: none;
font-size: 100%;
cursor: pointer;
margin: 1px 1px 5px;
}
* html .qq-upload-button,
*+html .qq-upload-button {
display: inline;
}
.qq-upload-button-focus {
outline: 1px dotted;
}
/* drop area */
.qq-upload-drop-area {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 70px;
z-index: 2;
background: __background_neu__;
color: __text__;
text-align: center;
}
.qq-upload-drop-area span {
display: block;
position: absolute;
top: 50%;
width: 100%;
margin-top: -8px;
font-size: 120%;
}
.qq-upload-drop-area-active {
background: __background_alt__;
}
/* list of files to upload */
div.qq-uploader ul {
margin: 0;
padding: 0;
list-style: none;
}
.qq-uploader li {
margin: 0 0 5px;
color: __text__;
}
.qq-uploader li span,
.qq-uploader li input,
.qq-uploader li a {
margin-right: 5px;
}
.qq-upload-file {
display: block;
font-weight: bold;
}
.qq-upload-spinner {
display: inline-block;
background: url("../../images/throbber.gif");
width: 15px;
height: 15px;
vertical-align: text-bottom;
}
.qq-upload-size,
.qq-upload-cancel {
font-size: 85%;
}
.qq-upload-failed-text {
display: none;
}
.qq-upload-fail .qq-upload-failed-text {
display: inline;
}
.qq-action-container * {
vertical-align: middle;
}
.qq-overwrite-check input {
margin-left: 10px;
}
@@ -0,0 +1,28 @@
/**
* This file provides styles for footnotes.
*/
/*____________ footnotes inside the text ____________*/
/* link to footnote inside the text */
.dokuwiki sup a.fn_top {
}
/* JSpopup */
div.insitu-footnote {
max-width: 40%;
min-width: 5em;
}
/*____________ footnotes at the bottom of the page ____________*/
.dokuwiki div.footnotes {
border-top: 1px solid __border__;
padding: .5em 0 0 0;
margin: 1em 0 0 0;
clear: both;
}
.dokuwiki div.footnotes div.fn {
}
.dokuwiki div.footnotes div.fn sup a.fn_bot {
font-weight: bold;
}
@@ -0,0 +1,92 @@
/* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */
/**
* This file provides styles for forms in general and specifically
* for ?do=
* - login
* - resendpwd
* - register
* - profile
* - subscribe
*/
/* ---------------- forms ------------------------ */
.dokuwiki form {
border: none;
display: inline;
}
.dokuwiki label.block {
display: block;
text-align: right;
font-weight: bold;
}
[dir=rtl] .dokuwiki label.block {
text-align: left;
}
.dokuwiki label.simple {
display: block;
text-align: left;
font-weight: normal;
}
[dir=rtl] .dokuwiki label.simple {
text-align: right;
}
.dokuwiki label.block select,
.dokuwiki label.block input.edit {
width: 50%;
}
.dokuwiki label span {
vertical-align: middle;
}
.dokuwiki fieldset {
width: 400px;
text-align: center;
border: 1px solid __border__;
padding: 0.5em;
margin: auto;
}
.dokuwiki input.edit,
.dokuwiki select.edit {
vertical-align: middle;
}
.dokuwiki select.edit {
padding: 0.1em 0;
}
.dokuwiki input.button,
.dokuwiki button.button {
vertical-align: middle;
}
/**
* Styles for the subscription page
*/
#subscribe__form {
display: block;
width: 400px;
text-align: center;
}
#subscribe__form fieldset {
text-align: left;
margin: 0.5em 0;
}
[dir=rtl] #subscribe__form fieldset {
text-align: right;
}
#subscribe__form label {
display: block;
margin: 0 0.5em 0.5em;
}
@@ -0,0 +1,38 @@
/**
* This file provides styles for the image detail page (detail.php).
*/
#dokuwiki__detail {
padding: 1em;
}
#dokuwiki__detail h1 {
}
#dokuwiki__detail img {
float: left;
margin: 0 1.5em .5em 0;
}
[dir=rtl] #dokuwiki__detail img {
float: right;
margin-right: 0;
margin-left: 1.5em;
}
#dokuwiki__detail div.img_detail {
float: left;
}
[dir=rtl] #dokuwiki__detail div.img_detail {
float: right
}
#dokuwiki__detail div.img_detail h2 {
}
#dokuwiki__detail div.img_detail dl {
}
#dokuwiki__detail div.img_detail dl dt {
}
#dokuwiki__detail div.img_detail dl dd {
}
#dokuwiki__detail p.back {
clear: both;
}
@@ -0,0 +1,86 @@
/* ATTENTION: This file was edited for the "vector template for DokuWiki".
- All url(images/[...]) rules where changed.
See 00_starter-tmpl-notes.txt for details. */
/**
* This file provides styles for all types of links.
*/
/*____________ links to wiki pages ____________*/
/* existing wikipage */
.dokuwiki a.wikilink1 {
}
/* not existing wikipage */
.dokuwiki a.wikilink2 {
text-decoration: none;
}
.dokuwiki a.wikilink2:link,
.dokuwiki a.wikilink2:visited {
border-bottom: 1px dashed;
}
.dokuwiki a.wikilink2:hover,
.dokuwiki a.wikilink2:active,
.dokuwiki a.wikilink2:focus {
border-bottom-width: 0;
}
/* any link to current page */
.dokuwiki span.curid a {
font-weight: bold;
}
/*____________ other link types ____________*/
.dokuwiki a.urlextern,
.dokuwiki a.windows,
.dokuwiki a.mail,
.dokuwiki a.mediafile,
.dokuwiki a.interwiki {
background-repeat: no-repeat;
background-position: 0 center;
padding: 0 0 0 18px;
}
/* external link */
.dokuwiki a.urlextern {
background-image: url(static/3rd/dokuwiki/external-link.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/external-link.png);
*/
}
/* windows share */
.dokuwiki a.windows {
background-image: url(static/3rd/dokuwiki/unc.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/unc.png);
*/
}
/* email link */
.dokuwiki a.mail {
background-image: url(static/3rd/dokuwiki/email.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/email.png);
*/
}
/* icons of the following are set by dokuwiki in lib/exe/css.php */
/* link to some embedded media */
.dokuwiki a.mediafile {
}
/* interwiki link */
.dokuwiki a.interwiki {
}
/* RTL corrections */
[dir=rtl] .dokuwiki a.urlextern,
[dir=rtl] .dokuwiki a.windows,
[dir=rtl] .dokuwiki a.mail,
[dir=rtl] .dokuwiki a.interwiki,
[dir=rtl] .dokuwiki a.mediafile {
background-position: right center;
padding: 0 18px 0 0;
display: inline-block; /* needed for IE7 */
}
@@ -0,0 +1,517 @@
/* ATTENTION: This file was edited for the "vector template for DokuWiki".
- All url(images/[...]) rules where changed.
See 00_starter-tmpl-notes.txt for details. */
/**
* This file provides the styles for the fullscreen media manager
* (?do=media).
*
* What most templates would probably need to change (depending on
* their site width) are the 4 min-width's (search for @change).
*/
/*____________ structure ____________*/
#mediamanager__page h1 {
margin-bottom: .5em;
}
#mediamanager__page {
/* min-width must be summary of all 3 panels' min-widths */
min-width: 50em; /* @change */
width: 100%;
text-align: left;
}
#mediamanager__page .panel {
float: left;
}
#mediamanager__page .namespaces {
width: 20%;
min-width: 10em; /* @change */
}
#mediamanager__page .filelist {
width: 50%;
min-width: 25em; /* @change */
}
#mediamanager__page .file {
width: 30%;
min-width: 15em; /* @change */
}
#mediamanager__page .panelHeader {
background-color: __background_alt__;
margin: 0 10px 10px 0;
padding: 10px 10px 8px;
text-align: left;
min-height: 20px;
overflow: hidden;
}
#mediamanager__page .panelContent {
overflow-y: auto;
overflow-x: hidden;
padding: 0;
margin: 0 10px 10px 0;
position: relative;
}
[dir=rtl] #mediamanager__page .panelContent {
text-align: right;
}
#mediamanager__page .file .panelHeader,
#mediamanager__page .file .panelContent {
margin-right: 0;
}
#mediamanager__page .ui-resizable-e {
width: 6px;
right: 2px;
background: transparent url(static/3rd/dokuwiki/resizecol.png) center center no-repeat;
/*
@deprecated, change since Adora Belle:
background: transparent url(../../images/resizecol.png) center center no-repeat;
*/
}
#mediamanager__page .ui-resizable-e:hover {
background-color: __background_alt__;
}
#mediamanager__page dd {
margin: 0;
}
#mediamanager__page .panelHeader h3 {
float: left;
font-weight: normal;
font-size: 1em;
padding: 0;
margin: 0 0 3px;
}
/*____________ namespaces panel ____________*/
[dir=rtl] #mediamanager__page .namespaces {
text-align: right;
}
/* make it look like a tab (as in _tabs.css) */
#mediamanager__page .namespaces h2 {
font-size: 1em;
display: inline-block;
padding: .3em .8em;
margin: 0 0 0 .3em;
border-radius: .5em .5em 0 0;
font-weight: normal;
background-color: __background_alt__;
color: __text__;
border: 1px solid __border__;
border-bottom-color: __background_alt__;
line-height: 1.4em;
position: relative;
bottom: -1px;
z-index: 2;
}
* html #mediamanager__page .namespaces h2,
*+html #mediamanager__page .namespaces h2 {
display: inline;
}
[dir=rtl] #mediamanager__page .namespaces h2 {
margin: 0 .3em 0 0;
position: relative;
right: 10px;
}
#mediamanager__page .namespaces .panelHeader {
border-top: 1px solid __border__;
z-index: 1;
}
#mediamanager__page .namespaces ul {
margin-left: .2em;
margin-bottom: 0;
padding: 0;
list-style: none;
}
[dir=rtl] #mediamanager__page .namespaces ul {
margin-left: 0;
margin-right: .2em;
}
#mediamanager__page .namespaces ul ul {
margin-left: 1em;
}
[dir=rtl] #mediamanager__page .namespaces ul ul {
margin-left: 0;
margin-right: 1em;
}
#mediamanager__page .namespaces ul ul li {
margin: 0;
}
#mediamanager__page .namespaces ul .selected {
background-color: __highlight__;
font-weight: bold;
}
/*____________ file list panel ____________*/
/* file list header */
#mediamanager__page .panelHeader form.options {
float: right;
margin-top: -3px;
}
#mediamanager__page .panelHeader ul {
list-style: none;
margin: 0;
padding: 0;
}
#mediamanager__page .panelHeader ul li {
color: __text__;
float: left;
line-height: 1;
padding-left: 3px;
}
[dir=rtl] #mediamanager__page .panelHeader ul li {
margin-right: 0;
margin-left: .5em;
}
#mediamanager__page .panelHeader ul li.listType {
padding-left: 30px;
margin: 0 0 0 5px;
background: url('../../images/icon-list.png') 3px 1px no-repeat;
}
#mediamanager__page .panelHeader ul li.sortBy {
padding-left: 30px;
margin: 0 0 0 5px;
background: url('../../images/icon-sort.png') 3px 1px no-repeat;
}
#mediamanager__page .panelHeader form.options .ui-buttonset label{
font-size: 90%;
margin-right: -0.4em;
}
#mediamanager__page .panelHeader form.options .ui-buttonset .ui-button-text {
padding: .3em .5em;
line-height: 1;
}
/* file list content */
#mediamanager__page .filelist ul {
padding: 0;
margin: 0 10px 0 0;
}
[dir=rtl] #mediamanager__page .filelist ul {
margin: 0 10px 0 0;
}
#mediamanager__page .filelist .panelContent ul li:hover {
background-color: __background_alt__;
}
#mediamanager__page .filelist li dt a {
vertical-align: middle;
display: table-cell;
overflow: hidden;
}
* html #mediamanager__page .filelist .thumbs li dt a,
*+html #mediamanager__page .filelist .thumbs li dt a {
display: block;
}
* html #mediamanager__page .filelist .rows li dt a,
*+html #mediamanager__page .filelist .rows li dt a {
display: inline;
}
/* file list as thumbs */
#mediamanager__page .filelist .thumbs li {
width: 100px;
min-height: 130px;
display: inline-block;
display: -moz-inline-stack;
/* the right margin should visually be 10px, but because of its inline-block nature the whitespace inbetween is about 4px more */
margin: 0 6px 10px 0;
background-color: __background_neu__;
color: __text__;
padding: 5px;
vertical-align: top;
text-align: center;
position: relative;
line-height: 1.2;
}
[dir=rtl] #mediamanager__page .filelist .thumbs li {
margin-right: 0;
margin-left: 6px;
}
* html #mediamanager__page .filelist .thumbs li,
*+html #mediamanager__page .filelist .thumbs li {
display: inline;
zoom: 1;
}
#mediamanager__page .filelist .thumbs li dt a {
width: 100px;
height: 90px;
}
#mediamanager__page .filelist .thumbs li dt a img {
max-width: 90px;
max-height: 90px;
}
#mediamanager__page .filelist .thumbs li .name,
#mediamanager__page .filelist .thumbs li .size,
#mediamanager__page .filelist .thumbs li .filesize,
#mediamanager__page .filelist .thumbs li .date {
display: block;
overflow: hidden;
text-overflow: ellipsis;
width: 90px;
white-space: nowrap;
}
#mediamanager__page .filelist .thumbs li .name {
padding: 5px 0;
font-weight: bold;
}
#mediamanager__page .filelist .thumbs li .date {
font-style: italic;
white-space: normal;
}
/* file list as rows */
#mediamanager__page .filelist .rows li {
list-style: none;
display: block;
position: relative;
max-height: 50px;
margin: 0;
margin-bottom: 3px;
background-color: __background__;
color: __text__;
overflow: hidden;
}
#mediamanager__page .filelist .rows li:nth-child(2n+1) {
background-color: __background_neu__;
}
#mediamanager__page .filelist .rows li dt {
float: left;
width: 10%;
height: 40px;
text-align: center;
}
#mediamanager__page .filelist .rows li dt a {
width: 100px;
height: 40px;
}
#mediamanager__page .filelist .rows li dt a img {
max-width: 40px;
max-height: 40px;
}
#mediamanager__page .filelist .rows li .name,
#mediamanager__page .filelist .rows li .size,
#mediamanager__page .filelist .rows li .filesize,
#mediamanager__page .filelist .rows li .date {
overflow: hidden;
text-overflow: ellipsis;
float: left;
margin-left: 1%;
white-space: nowrap;
}
#mediamanager__page .filelist .rows li .name {
width: 30%;
font-weight: bold;
}
#mediamanager__page .filelist .rows li .size,
#mediamanager__page .filelist .rows li .filesize {
width: 15%;
}
#mediamanager__page .filelist .rows li .date {
width: 20%;
font-style: italic;
white-space: normal;
}
/* upload form */
#mediamanager__page div.upload {
padding-bottom: 0.5em;
}
/*____________ file panel ____________*/
#mediamanager__page .file ul.actions {
text-align: center;
margin: 0 0 5px;
padding: 0;
list-style: none;
}
#mediamanager__page .file ul.actions li {
display: inline;
margin: 0;
}
#mediamanager__page .file div.image {
margin-bottom: 5px;
text-align: center;
}
#mediamanager__page .file div.image img {
width: 100%;
}
#mediamanager__page .file dl {
margin-bottom: 0;
}
#mediamanager__page .file dl dt {
font-weight: bold;
display: block;
background-color: __background_alt__;
}
#mediamanager__page .file dl dd {
display: block;
background-color: __background_neu__;
}
/* file meta data edit form */
#mediamanager__page form.meta div.row {
margin-bottom: 5px;
}
#mediamanager__page form.meta label span {
display: block;
}
#mediamanager__page form.meta input {
width: 50%;
}
#mediamanager__page form.meta input.button {
width: auto;
}
#mediamanager__page form.meta textarea.edit {
height: 6em;
width: 95%;
min-width: 95%;
max-width: 95%;
}
/* file revisions form */
#mediamanager__page #page__revisions ul, /* old, until 2012-01-25 */
#mediamanager__page form.changes ul /* new */ {
margin-left: 10px;
padding: 0;
list-style-type: none;
}
#mediamanager__page #page__revisions ul li div.li div, /* old, until 2012-01-25 */
#mediamanager__page form.changes ul li div.li div /* new */ {
font-size: 90%;
color: __text_neu__;
padding-left: 18px;
}
#mediamanager__page #page__revisions ul li div.li input, /* old, until 2012-01-25 */
#mediamanager__page form.changes ul li div.li input /* new */ {
position: relative;
top: 1px;
}
/* file diff view */
#mediamanager__diff table {
table-layout: fixed;
border-width: 0;
}
#mediamanager__diff td,
#mediamanager__diff th {
width: 48%;
margin: 0 5px 10px 0;
padding: 0;
vertical-align: top;
text-align: left;
border-color: __background__;
}
[dir=rtl] #mediamanager__diff td,
[dir=rtl] #mediamanager__diff th {
text-align: right;
}
#mediamanager__diff th {
font-weight: normal;
background-color: __background__;
line-height: 1.2;
}
#mediamanager__diff th a {
font-weight: bold;
}
#mediamanager__diff th span {
font-size: 90%;
}
#mediamanager__diff dl dd strong{
background-color: __highlight__;
color: __text__;
font-weight: normal;
}
/* image diff views */
#mediamanager__page .file form.diffView {
margin-bottom: 10px;
display: block;
}
#mediamanager__diff div.slider {
margin: 10px;
width: 95%;
}
#mediamanager__diff .imageDiff {
position: relative;
}
#mediamanager__diff .imageDiff .image2 {
position: absolute;
top: 0;
left: 0;
}
#mediamanager__diff .imageDiff.opacity .image2 {
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#mediamanager__diff .imageDiff.portions .image2 {
border-right: 1px solid red;
overflow: hidden;
}
#mediamanager__diff .imageDiff.portions img {
float: left;
}
#mediamanager__diff .imageDiff img {
width: 100%;
max-width: none;
}
@@ -0,0 +1,257 @@
/**
* This file provides styles for the media manager popup
* (mediamanager.php).
*/
/*____________ structure ____________*/
html.popup {
overflow: auto;
}
#media__manager {
height: 100%;
overflow: hidden;
}
#mediamgr__aside {
width: 30%;
height: 100%;
overflow: auto;
position: absolute;
left: 0;
border-right: 1px solid __border__;
}
[dir=rtl] #mediamgr__aside {
left: auto;
right: 0;
border-right-width: 0;
border-left: 1px solid __border__;
}
#mediamgr__aside .pad {
padding: .5em;
}
#mediamgr__content {
width: 69.7%;
height: 100%;
overflow: auto;
position: absolute;
right: 0;
}
[dir=rtl] #mediamgr__content {
right: auto;
left: 0;
}
#mediamgr__content .pad {
padding: .5em;
}
#media__manager h1,
#media__manager h2 {
font-size: 1.5em;
margin-bottom: .5em;
padding-bottom: .2em;
border-bottom: 1px solid __border__;
}
/* left side
********************************************************************/
/*____________ options ____________*/
#media__opts {
margin-bottom: .5em;
}
#media__opts input {
margin-right: .3em;
}
[dir=rtl] #media__opts input {
margin-right: 0;
margin-left: .3em;
}
#media__opts label {
}
/*____________ tree ____________*/
#media__tree ul {
padding-left: .2em;
}
[dir=rtl] #media__tree ul {
padding-left: 0;
padding-right: .2em;
}
#media__tree ul li {
clear: left;
list-style-type: none;
list-style-image: none;
margin-left: 0;
}
[dir=rtl] #media__tree ul li {
clear: right;
margin-right: 0;
}
#media__tree ul li img {
float: left;
padding: .5em .3em 0 0;
}
[dir=rtl] #media__tree ul li img {
float: right;
padding: .5em 0 0 .3em;
}
#media__tree ul li div.li {
display: inline;
}
#media__tree ul li li {
margin-left: 1.5em;
}
[dir=rtl] #media__tree ul li li {
margin-left: 0;
margin-right: 1.5em;
}
/* right side
********************************************************************/
/*____________ upload form ____________*/
/* upload info */
#media__content div.upload {
font-size: .9em;
margin-bottom: .5em;
}
#mediamanager__uploader {
margin-bottom: 1em;
}
#mediamanager__uploader p {
margin-bottom: .5em;
}
/*____________ file list ____________*/
#media__content img.load {
margin: 1em auto;
}
#media__content .odd,
#media__content .even {
padding: .5em;
}
#media__content .odd {
background-color: __background_alt__;
}
#media__content .even {
}
/* highlight newly uploaded or edited file */
#media__content #scroll__here {
border: 1px dashed __border__;
}
/* link which inserts media file */
#media__content a.mediafile {
margin-right: 1.5em;
font-weight: bold;
}
[dir=rtl] #media__content a.mediafile {
margin-right: 0;
margin-left: 1.5em;
}
#media__content span.info {
}
#media__content img.btn {
vertical-align: text-bottom;
}
/* info how to insert media, if JS disabled */
#media__content div.example {
color: __text_neu__;
margin-left: 1em;
}
#media__content div.detail {
padding: .2em 0;
}
#media__content div.detail div.thumb {
float: left;
margin: 0 .5em 0 18px;
}
[dir=rtl] #media__content div.detail div.thumb {
float: right;
margin: 0 18px 0 .5em;
}
#media__content div.detail div.thumb a {
display: block;
cursor: pointer;
}
#media__content div.detail p {
margin-bottom: 0;
}
/*____________ media search ____________*/
#dw__mediasearch {
}
#dw__mediasearch p {
}
#dw__mediasearch label {
}
#dw__mediasearch label span {
}
#dw__mediasearch input.edit {
}
#dw__mediasearch input.button {
}
/* meta edit form
********************************************************************/
#media__content form.meta {
}
#media__content form.meta div.metafield {
clear: left;
margin-bottom: .5em;
overflow: hidden;
}
[dir=rtl] #media__content form.meta div.metafield {
clear: right;
}
#media__content form.meta label {
display: block;
width: 25%;
float: left;
font-weight: bold;
clear: left;
}
[dir=rtl] #media__content form.meta label {
float: right;
clear: right;
}
#media__content form.meta .edit {
float: left;
width: 70%;
margin: 0;
}
[dir=rtl] #media__content form.meta .edit {
float: right;
}
#media__content form.meta textarea.edit {
/* needed because of IE8 hack in _edit.css for textarea.edit: */
max-width: 70%;
min-width: 70%;
}
#media__content form.meta div.buttons {
clear: left;
margin: .2em 0 0 25%;
}
[dir=rtl] #media__content form.meta div.buttons {
clear: right;
margin: .2em 25% 0 0;
}
@@ -0,0 +1,101 @@
/**
* This file provides styles for modal dialogues.
*/
.dokuwiki .ui-widget {
font-size: 100%;
}
/* link wizard (opens from the link button in the edit toolbar)
********************************************************************/
#link__wiz {
}
#link__wiz_result {
background-color: __background__;
width: 293px;
height: 193px;
overflow: auto;
border: 1px solid __border__;
margin: 3px auto;
text-align: left;
line-height: 1;
}
[dir=rtl] #link__wiz_result {
text-align: right;
}
#link__wiz_result div {
padding: 3px 3px 3px 0;
}
[dir=rtl] #link__wiz_result div {
padding: 3px 0 3px 3px;
}
#link__wiz_result div a {
display: block;
padding-left: 22px;
min-height: 16px;
background: transparent 3px center no-repeat;
}
[dir=rtl] #link__wiz_result div a {
padding-right: 22px;
background-position: right 0;
}
#link__wiz_result div.type_u a {
background-image: url(../../images/up.png);
}
#link__wiz_result div.type_f a {
background-image: url(../../images/page.png);
}
#link__wiz_result div.type_d a {
background-image: url(../../images/ns.png);
}
#link__wiz_result div.even {
background-color: __background_neu__;
}
#link__wiz_result div.selected {
background-color: __background_alt__;
}
#link__wiz_result span {
display: block;
color: __text_neu__;
margin-left: 22px;
}
[dir=rtl] #link__wiz_result span {
margin-left: 0;
margin-right: 22px;
}
/* media option wizard (opens when inserting media in the media popup)
********************************************************************/
#media__popup {
/* for backwards compatibility (not needed since Rincewind) */
display: none;
}
#media__popup_content p {
margin: 0 0 .5em;
}
#media__popup_content label {
margin-right: .5em;
cursor: default;
}
[dir=rtl] #media__popup_content label {
margin-right: 0;
margin-left: .5em;
}
#media__popup_content .button {
margin-right: 1px;
cursor: pointer;
}
@@ -0,0 +1,88 @@
/**
* This file provides styles for the recent changes (?do=recent) and
* old revisions (?do=revisions).
*/
/*____________ list of revisions / recent changes ____________*/
/* select type of revisions (media/pages), should have a class on it's own, but hasn't (until after version 2012-01-25) */
.dokuwiki #dw__recent label, /* old, until 2012-01-25 */
.dokuwiki .changeType /* new */ {
margin-bottom: .5em;
display: block;
}
.dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li /* new */ {
list-style: none;
margin-left: 0;
}
[dir=rtl] .dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */
[dir=rtl] .dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */
[dir=rtl] .dokuwiki form.changes ul li /* new */ {
margin-right: 0;
}
.dokuwiki #dw__recent ul li span, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li span, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li span, /* new */
.dokuwiki #dw__recent ul li a, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li a, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li a /* new */ {
vertical-align: middle;
}
.dokuwiki #dw__recent ul li span.user a, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li span.user a, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li span.user a /* new */ {
vertical-align: bottom;
}
.dokuwiki #dw__recent ul li.minor, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li.minor, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li.minor /* new */ {
opacity: .7;
}
.dokuwiki #dw__recent ul li span.date, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li span.date, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li span.date /* new */ {
}
.dokuwiki #dw__recent ul li a.diff_link, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li a.diff_link, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li a.diff_link /* new */ {
vertical-align: baseline;
}
.dokuwiki #dw__recent ul li a.revisions_link, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li a.revisions_link, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li a.revisions_link /* new */ {
vertical-align: baseline;
}
.dokuwiki #dw__recent ul li a.wikilink1, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li a.wikilink1, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li a.wikilink1, /* new */
.dokuwiki #dw__recent ul li a.wikilink2, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li a.wikilink2, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li a.wikilink2 /* new */ {
}
.dokuwiki #dw__recent ul li span.sum, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li span.sum, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li span.sum /* new */ {
font-weight: bold;
}
.dokuwiki #dw__recent ul li span.user, /* old, until 2012-01-25 */
.dokuwiki #page__revisions ul li span.user, /* old, until 2012-01-25 */
.dokuwiki form.changes ul li span.user /* new */ {
}
/*____________ page navigator ____________*/
.dokuwiki div.pagenav {
text-align: center;
margin: 1.4em 0;
}
.dokuwiki div.pagenav-prev,
.dokuwiki div.pagenav-next {
display: inline;
margin: 0 .5em;
}
@@ -0,0 +1,114 @@
/**
* This file provides styles for the search results page (?do=search)
* and the AJAX search popup.
*/
/* search results page
********************************************************************/
/* loading gif */
#dw__loading {
text-align: center;
margin-bottom: 1.4em;
}
/*____________ matching pagenames ____________*/
.dokuwiki div.search_quickresult {
margin-bottom: 1.4em;
}
.dokuwiki div.search_quickresult h3 {
}
.dokuwiki div.search_quickresult ul {
padding: 0;
}
.dokuwiki div.search_quickresult ul li {
float: left;
width: 12em;
margin: 0 1.5em;
}
[dir=rtl] .dokuwiki div.search_quickresult ul li {
float: right;
}
/*____________ search results ____________*/
.dokuwiki div.search_result {
margin-bottom: 1.2em;
}
/* search heading */
.dokuwiki dl.search_results dt {
font-weight: normal;
margin-bottom: .2em;
}
/* search snippet */
.dokuwiki div.search_result div.search_snippet, /* old, until 2012-01-25 */
.dokuwiki dl.search_results dd /* new */ {
color: __text_alt__;
background-color: inherit;
margin: 0 0 1.2em 0;
}
/* search hit in normal text */
.dokuwiki .search_hit {
color: __text__;
background-color: __highlight__;
}
/* search hit in search results */
.dokuwiki div.search_result strong.search_hit, /* old */
.dokuwiki .search_results strong.search_hit /* new */ {
font-weight: normal;
}
/* ellipsis separating snippets */
.dokuwiki div.search_result .search_sep, /* old */
.dokuwiki .search_results .search_sep /* new */ {
color: __text__;
background-color: inherit;
}
/* "nothing found" at search + media */
.dokuwiki div.nothing {
margin-bottom: 1.4em;
}
/* AJAX quicksearch popup
********************************************************************/
.dokuwiki form.search div.no {
position: relative;
z-index: 1;
}
/* .JSpopup */
.dokuwiki form.search div.ajax_qsearch {
position: absolute;
top: 0;
left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */
width: 12em;
padding: 0.5em;
font-size: .9em;
z-index: 20;
text-align: left;
display: none;
}
[dir=rtl] .dokuwiki form.search div.ajax_qsearch {
left: auto;
right: -13.5em;
text-align: right;
}
.dokuwiki form.search div.ajax_qsearch strong {
display: block;
margin-bottom: .3em;
}
.dokuwiki form.search div.ajax_qsearch ul {
margin: 0 !important;
padding: 0 !important;
}
.dokuwiki form.search div.ajax_qsearch ul li {
margin: 0;
padding: 0;
display: block !important;
}
@@ -0,0 +1,82 @@
/**
* This file provides the styles for general tabs.
*/
.dokuwiki .tabs > ul,
.dokuwiki ul.tabs {
padding: 0;
margin: 0;
overflow: hidden;
position: relative;
}
/* border underneath */
.dokuwiki .tabs > ul:after,
.dokuwiki ul.tabs:after {
position: absolute;
content: "";
width: 100%;
bottom: 0;
left: 0;
border-bottom: 1px solid __border__;
z-index: 1;
}
.dokuwiki .tabs > ul li,
.dokuwiki ul.tabs li {
float: left;
padding: 0;
margin: 0;
list-style: none;
}
[dir=rtl] .dokuwiki .tabs > ul li,
[dir=rtl] .dokuwiki ul.tabs li {
float: right;
}
.dokuwiki .tabs > ul li a,
.dokuwiki ul.tabs li strong,
.dokuwiki ul.tabs li a {
display: inline-block;
padding: .3em .8em;
margin: 0 0 0 .3em;
background-color: __background_neu__;
color: __text__;
border: 1px solid __border__;
border-radius: .5em .5em 0 0;
position: relative;
z-index: 0;
}
[dir=rtl] .dokuwiki .tabs > ul li a,
[dir=rtl] .dokuwiki ul.tabs li strong,
[dir=rtl] .dokuwiki ul.tabs li a {
margin: 0 .3em 0 0;
}
.dokuwiki ul.tabs li strong {
font-weight: normal;
}
.dokuwiki ul.tabs li a:link,
.dokuwiki ul.tabs li a:visited {
}
.dokuwiki .tabs > ul li a:hover,
.dokuwiki .tabs > ul li a:active,
.dokuwiki .tabs > ul li a:focus,
.dokuwiki .tabs > ul li .curid a,
.dokuwiki .tabs > ul .active a,
.dokuwiki ul.tabs li a:hover,
.dokuwiki ul.tabs li a:active,
.dokuwiki ul.tabs li a:focus,
.dokuwiki ul.tabs li strong {
background-color: __background_alt__;
color: __text__;
text-decoration: none;
font-weight: normal;
}
.dokuwiki .tabs > ul li .curid a,
.dokuwiki .tabs > ul li .active a,
.dokuwiki ul.tabs li strong {
z-index: 2;
border-bottom-color: __background_alt__;
}
+132
View File
@@ -0,0 +1,132 @@
/* ATTENTION: This file was edited for the "vector template for DokuWiki".
- All url(images/[...]) rules where changed.
See 00_starter-tmpl-notes.txt for details. */
/**
* This file provides styles for the TOC (table of contents), the
* sitemap (?do=index) and backlinks (?do=backlink).
*/
/* toc
********************************************************************/
/* toc container */
.dokuwiki div.toc, /* old, until 2012-01-25 */
#dw__toc /* new */ {
float: right;
margin: 0 0 1.4em 1.4em;
width: 12em;
background-color: __background_alt__;
color: inherit;
}
[dir=rtl] .dokuwiki div.toc, /* old, until 2012-01-25 */
[dir=rtl] #dw__toc /* new */ {
float: left;
margin: 0 1.4em 1.4em 0;
}
/*____________ toc header ____________*/
.dokuwiki div.tocheader, /* old */
#dw__toc h3 /* new */ {
padding: .2em .5em;
font-weight: bold;
margin-bottom: 0;
font-size: 1em;
}
.dokuwiki .toc span.toc_open, /* old */
.dokuwiki .toc span.toc_close, /* old */
#dw__toc h3 strong /* new */ {
float: right;
margin: 0 .2em;
line-height: 1;
}
[dir=rtl] .dokuwiki .toc span.toc_open, /* old */
[dir=rtl] .dokuwiki .toc span.toc_close, /* old */
[dir=rtl] #dw__toc h3 strong /* new */ {
float: left;
}
/*____________ toc list ____________*/
.dokuwiki #toc__inside,
#dw__toc > div {
padding: .2em .5em;
}
.dokuwiki #toc__inside ul, /* old */
#dw__toc ul /* new */ {
padding: 0;
margin: 0;
}
.dokuwiki #toc__inside ul li, /* old */
#dw__toc ul li /* new */ {
list-style: none;
padding: 0;
margin: 0;
line-height: 1.1;
}
.dokuwiki #toc__inside ul li div.li, /* old */
#dw__toc ul li div.li /* new */ {
padding: .15em 0;
}
.dokuwiki #toc__inside ul ul, /* old */
#dw__toc ul ul /* new */ {
padding-left: 1em;
}
[dir=rtl] .dokuwiki #toc__inside ul ul, /* old */
[dir=rtl] #dw__toc ul ul /* new */ {
padding-left: 0;
padding-right: 1em;
}
.dokuwiki #toc__inside ul ul li, /* old */
#dw__toc ul ul li /* new */ {
}
.dokuwiki #toc__inside ul li a, /* old */
#dw__toc ul li a /* new */ {
}
/* in case of toc list jumping one level
(e.g. if heading level 3 follows directly after heading level 1) */
.dokuwiki #toc__inside ul li.clear, /* old */
#dw__toc ul li.clear /* new */ {
}
/* sitemap (and backlinks)
********************************************************************/
.dokuwiki ul.idx {
padding-left: 0;
}
[dir=rtl] .dokuwiki ul.idx {
padding-right: 0;
}
.dokuwiki ul.idx li {
list-style-image: url(static/3rd/dokuwiki/bullet.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/bullet.png);
*/
}
.dokuwiki ul.idx li.open {
list-style-image: url(static/3rd/dokuwiki/open.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/open.png);
*/
}
.dokuwiki ul.idx li.closed {
list-style-image: url(static/3rd/dokuwiki/closed.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/closed.png);
*/
}
[dir=rtl] .dokuwiki ul.idx li.closed {
list-style-image: url(static/3rd/dokuwiki/closed-rtl.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/closed-rtl.png);
*/
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 659 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

@@ -0,0 +1,6 @@
en: To use an own logo, DO NOT replace the logo.png in here. Simply store your
logo.[png|gif|jpg] into "/vector/user/". See README for details.
de: Um ein eigenes Logo zu nutzen bitte NICHT die logo.png in diesem Verzeichnis
ersetzen, sondern einfach eine logo.[png|gif|jpg] unterhalb "/vector/user/"
abspeichern. Siehe README für weiter Details.
Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

@@ -0,0 +1,174 @@
/**
* This file provides the styles for printing.
*
* @todo: improve and finish
*/
body {
/*
font: normal 12pt/1.2 serif;
color: #000;
background-color: #fff;
*/
}
/* hide certain sections */
.a11y,
div.notify, div.info, div.success, div.error,
#dokuwiki__header .tools, #dokuwiki__aside,
.dokuwiki .breadcrumbs, .dokuwiki .toc, #dw__toc, .dokuwiki .secedit,
#dokuwiki__pagetools, #dokuwiki__footer {
display: none;
}
.dokuwiki h1,
.dokuwiki h2,
.dokuwiki h3,
.dokuwiki h4,
.dokuwiki h5,
.dokuwiki caption,
.dokuwiki legend {
clear: both;
}
.dokuwiki ul {
list-style: disc outside;
}
.dokuwiki ol {
list-style: decimal outside;
}
.dokuwiki ol ol {
list-style-type: lower-alpha;
}
.dokuwiki ol ol ol {
list-style-type: upper-roman;
}
.dokuwiki ol ol ol ol {
list-style-type: upper-alpha;
}
.dokuwiki ol ol ol ol ol {
list-style-type: lower-roman;
}
/* undo icons */
.dokuwiki a:link,
.dokuwiki a:visited {
text-decoration: underline;
color: #333;
background-color: inherit;
background-image: none;
padding: 0;
}
/* display href after link */
a.urlextern:after,
a.interwiki:after,
a.mail:after {
content: " [" attr(href) "]";
font-size: 90%;
}
/* code blocks */
.dokuwiki pre {
font-family: monospace;
}
.dokuwiki dl.code dt,
.dokuwiki dl.file dt {
font-weight: bold;
}
/* images */
.dokuwiki img {
border-width: 0;
vertical-align: middle;
}
.dokuwiki img.media {
margin: .2em 0;
}
.dokuwiki img.medialeft {
margin: .2em 1.5em .2em 0;
}
.dokuwiki img.mediaright {
margin: .2em 0 .2em 1.5em;
}
.dokuwiki img.mediacenter {
margin: .2em auto;
}
/* align table cells */
.dokuwiki .leftalign {
text-align: left;
}
.dokuwiki .centeralign {
text-align: center;
}
.dokuwiki .rightalign {
text-align: right;
}
/* underline */
.dokuwiki em.u {
font-style: normal;
text-decoration: underline;
}
.dokuwiki em em.u {
font-style: italic;
}
div.clearer {
clear: both;
line-height: 0;
height: 0;
overflow: hidden;
}
.dokuwiki blockquote {
padding: 0 10pt;
margin: 0;
border: solid #ccc;
border-width: 0 0 0 2pt;
}
[dir=rtl] .dokuwiki blockquote {
border-width: 0 2pt 0 0;
}
/* tables */
.dokuwiki table {
border-collapse: collapse;
empty-cells: show;
border-spacing: 0;
border: 1pt solid #ccc;
}
.dokuwiki th,
.dokuwiki td {
padding: 3pt 5pt;
margin: 0;
vertical-align: top;
border: 1pt solid #666;
text-align: left;
}
[dir=rtl] .dokuwiki th,
[dir=rtl] .dokuwiki td {
text-align: right;
}
.dokuwiki th {
font-weight: bold;
}
/*____________ a bit of layout ____________*/
#dokuwiki__header {
border-bottom: 2pt solid #ccc;
}
#dokuwiki__header h1 {
font-size: 1.5em;
}
#dokuwiki__header h1 a {
text-decoration: none;
}
.dokuwiki div.footnotes {
clear: both;
border-top: 1pt solid #000;
margin-top: 10pt;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

@@ -0,0 +1,262 @@
<public:attach event="ondocumentready" onevent="CSSHover()" />
<script>
// <![CDATA[
/**
* Whatever:hover - V3.00.081222
* ------------------------------------------------------------
* Author - Peter Nederlof, http://www.xs4all.nl/~peterned
* License - http://creativecommons.org/licenses/LGPL/2.1
*
* Whatever:hover is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Whatever:hover is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* howto: body { behavior:url("csshover3.htc"); }
* ------------------------------------------------------------
*/
window.CSSHover = (function(){
// regular expressions, used and explained later on.
var REG_INTERACTIVE = /(^|\s)((([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(hover|active|focus))/i,
REG_AFFECTED = /(.*?)\:(hover|active|focus)/i,
REG_PSEUDO = /[^:]+:([a-z-]+).*/i,
REG_SELECT = /(\.([a-z0-9_-]+):[a-z]+)|(:[a-z]+)/gi,
REG_CLASS = /\.([a-z0-9_-]*on(hover|active|focus))/i,
REG_MSIE = /msie (5|6|7)/i,
REG_COMPAT = /backcompat/i;
// css prefix, a leading dash would be nice (spec), but IE6 doesn't like that.
var CSSHOVER_PREFIX = 'csh-';
/**
* Local CSSHover object
* --------------------------
*/
var CSSHover = {
// array of CSSHoverElements, used to unload created events
elements: [],
// buffer used for checking on duplicate expressions
callbacks: {},
// init, called once ondomcontentready via the exposed window.CSSHover function
init:function() {
// don't run in IE8 standards; expressions don't work in standards mode anyway,
// and the stuff we're trying to fix should already work properly
if(!REG_MSIE.test(navigator.userAgent) && !REG_COMPAT.test(window.document.compatMode)) return;
// start parsing the existing stylesheets
var sheets = window.document.styleSheets, l = sheets.length;
for(var i=0; i<l; i++) {
this.parseStylesheet(sheets[i]);
}
},
// called from init, parses individual stylesheets
parseStylesheet:function(sheet) {
// check sheet imports and parse those recursively
if(sheet.imports) {
try {
var imports = sheet.imports, l = imports.length;
for(var i=0; i<l; i++) {
this.parseStylesheet(sheet.imports[i]);
}
} catch(securityException){
// trycatch for various possible errors,
// todo; might need to be placed inside the for loop, since an error
// on an import stops following imports from being processed.
}
}
// interate the sheet's rules and send them to the parser
try {
var rules = sheet.rules, l = rules.length;
for(var j=0; j<l; j++) {
this.parseCSSRule(rules[j], sheet);
}
} catch(securityException){
// trycatch for various errors, most likely accessing the sheet's rules,
// don't see how individual rules would throw errors, but you never know.
}
},
// magic starts here ...
parseCSSRule:function(rule, sheet) {
// The sheet is used to insert new rules into, this must be the same sheet the rule
// came from, to ensure that relative paths keep pointing to the right location.
// only parse a rule if it contains an interactive pseudo.
var select = rule.selectorText;
if(REG_INTERACTIVE.test(select)) {
var style = rule.style.cssText,
// affected elements are found by truncating the selector after the interactive pseudo,
// eg: "div li:hover" >> "div li"
affected = REG_AFFECTED.exec(select)[1],
// that pseudo is needed for a classname, and defines the type of interaction (focus, hover, active)
// eg: "li:hover" >> "onhover"
pseudo = select.replace(REG_PSEUDO, 'on$1'),
// the new selector is going to use that classname in a new css rule,
// since IE6 doesn't support multiple classnames, this is merged into one classname
// eg: "li:hover" >> "li.onhover", "li.folder:hover" >> "li.folderonhover"
newSelect = select.replace(REG_SELECT, '.$2' + pseudo),
// the classname is needed for the events that are going to be set on affected nodes
// eg: "li.folder:hover" >> "folderonhover"
className = REG_CLASS.exec(newSelect)[1];
// no need to set the same callback more than once when the same selector uses the same classname
var hash = affected + className;
if(!this.callbacks[hash]) {
// affected elements are given an expression under a fake css property, the classname is used
// because a unique name (eg "behavior:") would be overruled (in IE6, not 7) by a following rule
// selecting the same element. The expression does a callback to CSSHover.patch, rerouted via the
// exposed window.CSSHover function.
// because the expression is added to the stylesheet, and styles are always applied to html that is
// dynamically added to the dom, the expression will also trigger for those new elements (provided
// they are selected by the affected selector).
sheet.addRule(affected, CSSHOVER_PREFIX + className + ':expression(CSSHover(this, "'+pseudo+'", "'+className+'"))');
// hash it, so an identical selector/class combo does not duplicate the expression
this.callbacks[hash] = true;
}
// duplicate expressions need not be set, but the style could differ
sheet.addRule(newSelect, style);
}
},
// called via the expression, patches individual nodes
patch:function(node, type, className) {
// the patch's type is returned to the expression. That way the expression property
// can be found and removed, to stop it from calling patch over and over.
// The if will fail the first time, since the expression has not yet received a value.
var property = CSSHOVER_PREFIX + className;
if(node.style[property]) {
node.style[property] = null;
}
// just to make sure, also keep track of patched classnames locally on the node
if(!node.csshover) node.csshover = [];
// and check for it to prevent duplicate events with the same classname from being set
if(!node.csshover[className]) {
node.csshover[className] = true;
// create an instance for the given type and class
var element = new CSSHoverElement(node, type, className);
// and store that instance for unloading later on
this.elements.push(element);
}
// returns a dummy value to the expression
return type;
},
// unload stuff onbeforeunload
unload:function() {
try {
// remove events
var l = this.elements.length;
for(var i=0; i<l; i++) {
this.elements[i].unload();
}
// and set properties to null
this.elements = [];
this.callbacks = {};
} catch (e) {
}
}
};
// add the unload to the onbeforeunload event
window.attachEvent('onbeforeunload', function(){
CSSHover.unload();
});
/**
* CSSHoverElement
* --------------------------
*/
// the event types associated with the interactive pseudos
var CSSEvents = {
onhover: { activator: 'onmouseenter', deactivator: 'onmouseleave' },
onactive: { activator: 'onmousedown', deactivator: 'onmouseup' },
onfocus: { activator: 'onfocus', deactivator: 'onblur' }
};
// CSSHoverElement constructor, called via CSSHover.patch
function CSSHoverElement(node, type, className) {
// the CSSHoverElement patches individual nodes by manually applying the events that should
// have fired by the css pseudoclasses, eg mouseenter and mouseleave for :hover.
this.node = node;
this.type = type;
var replacer = new RegExp('(^|\\s)'+className+'(\\s|$)', 'g');
// store event handlers for removal onunload
this.activator = function(){ node.className += ' ' + className; };
this.deactivator = function(){ node.className = node.className.replace(replacer, ' '); };
// add the events
node.attachEvent(CSSEvents[type].activator, this.activator);
node.attachEvent(CSSEvents[type].deactivator, this.deactivator);
}
CSSHoverElement.prototype = {
// onbeforeunload, called via CSSHover.unload
unload:function() {
// remove events
this.node.detachEvent(CSSEvents[this.type].activator, this.activator);
this.node.detachEvent(CSSEvents[this.type].deactivator, this.deactivator);
// and set properties to null
this.activator = null;
this.deactivator = null;
this.node = null;
this.type = null;
}
};
/**
* Public hook
* --------------------------
*/
return function(node, type, className) {
if(node) {
// called via the css expression; patches individual nodes
return CSSHover.patch(node, type, className);
} else {
// called ondomcontentready via the public:attach node
CSSHover.init();
}
};
})();
// ]]>
</script>
Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
+138
View File
@@ -0,0 +1,138 @@
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own screen CSS, have a look at the README of this
template and "/user/print.css". You have been warned!
*****************************************************************************/
body {
font: normal 80%/1.4 sans-serif;
}
div#content .dokuwiki h1,
div#content .dokuwiki h2,
div#content .dokuwiki h3,
div#content .dokuwiki h4,
div#content .dokuwiki h5,
div#content .dokuwiki h6 {
border-bottom: 0 none;
}
div#content .dokuwiki h1,
div#content .dokuwiki h2 {
font-weight: bold;
}
div#content .dokuwiki h1 {
font-weight: 135%;
}
div#content .dokuwiki h2 {
font-weight: 130%;
}
div#content .dokuwiki h3,
div#content .dokuwiki h4,
div#content .dokuwiki h5,
div#content .dokuwiki h6 {
font-weight: normal;
text-decoration: underline;
}
/* define the "noprint" class used by the original MediaWiki vector skin */
.noprint {
display: none;
}
/* remove some link styling */
div.dokuwiki a {
text-decoration: none !important;
}
/* remove interwiki link icons */
div.dokuwiki a.interwiki {
background: transparent none;
padding: 0;
}
/* quotes */
div#content .dokuwiki blockquote {
border-left: 2px solid __border__;
padding-left: 3px;
margin-left: 0.2em;
}
/* preformatted stuff, source code */
div#content .dokuwiki code,
div#content .dokuwiki pre,
div#content .dokuwiki pre.code,
div#content .dokuwiki pre.file {
font-size: 100%;
}
div#content .dokuwiki pre,
div#content .dokuwiki pre.code,
div#content .dokuwiki pre.file {
line-height: 1.2em;
background-color: __background_other__;
}
div#content .dokuwiki dl.file,
div#content .dokuwiki dl.file dd,
div#content .dokuwiki dl.file dt {
margin-left: 0;
}
div#content .dokuwiki dl.file dt {
background-color: __background_other__;
}
/* misc tweaks */
div#content,
div#bodyContent {
margin-left: 0;
border: 0 none;
font-size: 1em;
}
body {
background-image: none;
background-color: #fff;
}
/* tag plugin: hide tag row */
div.tags {
display: none;
}
/* pagelist plugin: listing tables */
div#content .dokuwiki table.ul,
div#content .dokuwiki table.ul tr,
div#content .dokuwiki table.ul td {
border: 0 none;
}
div#content .dokuwiki table.ul td.date,
div#content .dokuwiki table.ul td.user {
display: none;
}
div#content .dokuwiki table.ul ul,
div#content .dokuwiki table.ul ol,
div#content .dokuwiki table.ul li {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
/* wrap plugin: modify some inline styles */
div#content .dokuwiki span.wrap_box,
div#content .dokuwiki span.wrap_danger,
div#content .dokuwiki span.wrap_warning,
div#content .dokuwiki span.wrap_caution,
div#content .dokuwiki span.wrap_notice,
div#content .dokuwiki span.wrap_safety,
div#content .dokuwiki span.wrap_info,
div#content .dokuwiki span.wrap_important,
div#content .dokuwiki span.wrap_alert,
div#content .dokuwiki span.wrap_tip,
div#content .dokuwiki span.wrap_help,
div#content .dokuwiki span.wrap_todo,
div#content .dokuwiki span.wrap_download {
border-top: 0 none;
border-right: 0 none;
border-left: 0 none;
border-bottom: 1px dashed;
padding: 0;
}
+15
View File
@@ -0,0 +1,15 @@
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own screen CSS, have a look at the README of this
template and "/user/rtl.css". You have been warned!
*****************************************************************************/
/* right-to-left-support is still TODO */
/* external links */
div#bodyContent a.urlextern {
background: url(static/3rd/vector/external-link-rtl-icon.png) center left no-repeat;
padding: 0 13px 0 0;
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,65 @@
/******************************************************************************
******************************** ATTENTION *********************************
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
******************************************************************************
If you want to add some own screen CSS, have a look at the README of this
template and "/user/screen.css". You have been warned!
*****************************************************************************/
/* This file get loaded by a conditional comment. The style.ini is not used as
DokuWiki's internal CSS handling stumbles upon most of these Internet
Explorer specific browser hacks and corrections. */
/* buttons */
div.dokuwiki input.button,
div.dokuwiki button.button {
#line-height: 1em; /* fix MSIE 6, 7 */
}
div.dokuwiki button.toolbutton {
height: 22px\9; /* fix MSIE 6, 7, 8 */
}
/* media manager popup */
* html.popup #media__manager {
height: 465px; /* fix MSIE 6 */
}
/* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */
textarea,
.dokuwiki #dw__editform textarea.edit {
/* fix scrollbar flickers in IE8 standards mode, see
http://j.mp/bHExde and http://j.mp/ad7Abj for details */
width: 450px\9;
max-width: 100%\9;
min-width: 100%\9;
/* overwrite original vector with fixes for IE6/7 */
#width: 100% !important;
border: auto;
}
/* MSIE 7: media manager */
*:first-child+html #mediamanager__page .panelContent li {
list-style: none !important;
list-style-image: none !important;
}
/* ajax quicksearch: MSIE 6/7 */
* html #qsearch__out {
width: 206px;
}
#qsearch__out ul {
#list-style: none !important;
#list-style-image: none !important;
}
#qsearch__out li {
#width: 206px;
}
/* admin menu icons: MSIE 6/7 */
.dokuwiki ul.admin_tasks li div.li {
#border-left: 1px dashed #fff; /* invisible border triggers IE to render the stuff */
}
/* list style: MSIE 6/7 */
div#panel div.portal div.body ul {
#list-style: none outside none !important;
}
form#page__revisions ul, /* old, until 2012-01-25 */
form#dw__recent ul, /* old, until 2012-01-25 */
form.changes { /* new, since 2012-09-10 */
#list-style: none outside none !important;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>