')
6 | .addClass('mobile-menu');
7 |
8 |
9 | var $logo = jQuery('#p-logo')
10 | .clone()
11 | .removeAttr('id')
12 | .addClass('mobile-logo')
13 | ;
14 |
15 | var $search = jQuery('#p-search form')
16 | .clone()
17 | .removeAttr('id')
18 | .addClass('mobile-search');
19 | $search.find('#simpleSearch').removeAttr('id');
20 | $search.find('button').text('🔍');
21 |
22 | $mobilemenu.append($search);
23 |
24 | jQuery([
25 | 'p-navigation',
26 | 'left-navigation',
27 | 'right-navigation',
28 | 'p-coll-print_export',
29 | 'p-tb',
30 | 'p-personal'
31 | ]).each(function (i, name) {
32 | var ul = jQuery('
');
33 | $mobilemenu.append(ul);
34 |
35 | var filter = '#' + name + ' li';
36 | ul.addClass('mobile-' + name);
37 | ul.append(
38 | jQuery(filter)
39 | .not('.selected')
40 | .clone()
41 | .removeAttr('id')
42 | );
43 | });
44 |
45 | var $hamburger = jQuery('')
46 | .addClass('mobile-hamburger')
47 | .click(function () {
48 | $mobilemenu.toggleClass('open');
49 | $hamburger.toggleClass('open')
50 | });
51 |
52 |
53 | jQuery('body')
54 | .append([
55 | $mobilemenu,
56 | $hamburger
57 | ])
58 | .prepend(
59 | $logo
60 | )
61 | ;
62 | });
63 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/00_starter-tmpl-notes.txt:
--------------------------------------------------------------------------------
1 | I) starter template CSS version
2 |
at
3 | 2012-10-17 01:17 GMT+1
4 |
5 |
6 | II) Modifications
7 | - I edited _links.css, _media_fullscreen.css, _toc.css:
8 | All url(images/[...]) rules were changed (-> "static/3rd/dokuwiki/"). To
9 | make this clear, a comment was added at the top of the files.
10 | - "static/3rd/dokuwiki/bullet|close|open.gif" were re-saved as PNG.
11 |
12 |
13 | III) Notes
14 | The css files were taken from the "starter template". See the following for
15 | more information:
16 | -
17 | -
18 | - ../../../README
19 |
20 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_admin.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the Administration overview
3 | * (?do=admin).
4 | */
5 |
6 | .dokuwiki ul.admin_tasks {
7 | float: left;
8 | width: 40%;
9 | list-style-type: none;
10 | font-size: 1.125em;
11 | }
12 | [dir=rtl] .dokuwiki ul.admin_tasks {
13 | float: right;
14 | }
15 |
16 | .dokuwiki ul.admin_tasks li {
17 | padding-left: 35px;
18 | margin: 0 0 1em 0;
19 | font-weight: bold;
20 | list-style-type: none;
21 | background: transparent none no-repeat scroll 0 0;
22 | color: inherit;
23 | }
24 | [dir=rtl] .dokuwiki ul.admin_tasks li {
25 | padding-left: 0;
26 | padding-right: 35px;
27 | background-position: right 0;
28 | }
29 |
30 | .dokuwiki ul.admin_tasks li.admin_acl {
31 | background-image: url(../../images/admin/acl.png);
32 | }
33 | .dokuwiki ul.admin_tasks li.admin_usermanager {
34 | background-image: url(../../images/admin/usermanager.png);
35 | }
36 | .dokuwiki ul.admin_tasks li.admin_plugin {
37 | background-image: url(../../images/admin/plugin.png);
38 | }
39 | .dokuwiki ul.admin_tasks li.admin_config {
40 | background-image: url(../../images/admin/config.png);
41 | }
42 | .dokuwiki ul.admin_tasks li.admin_revert {
43 | background-image: url(../../images/admin/revert.png);
44 | }
45 | .dokuwiki ul.admin_tasks li.admin_popularity {
46 | background-image: url(../../images/admin/popularity.png);
47 | }
48 |
49 | /* DokuWiki version below */
50 | .dokuwiki #admin__version {
51 | clear: left;
52 | float: right;
53 | color: __text_neu__;
54 | background-color: inherit;
55 | }
56 | [dir=rtl] .dokuwiki #admin__version {
57 | clear: right;
58 | float: left;
59 | }
60 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_diff.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the diff view, which shows you
3 | * differences between two versions of a page (?do=diff).
4 | */
5 |
6 | .dokuwiki table.diff {
7 | width: 100%;
8 | border-width: 0;
9 | }
10 | .dokuwiki table.diff th,
11 | .dokuwiki table.diff td {
12 | vertical-align: top;
13 | padding: 0;
14 | border-width: 0;
15 | /* no style.ini colours because deleted and added lines have a fixed background colour */
16 | background-color: #fff;
17 | color: #333;
18 | }
19 |
20 | /* table header */
21 | .dokuwiki table.diff th {
22 | border-bottom: 1px solid __border__;
23 | font-size: 110%;
24 | width: 50%;
25 | font-weight: normal;
26 | }
27 | .dokuwiki table.diff th a {
28 | font-weight: bold;
29 | }
30 | .dokuwiki table.diff th span.user {
31 | font-size: .9em;
32 | }
33 | .dokuwiki table.diff th span.sum {
34 | font-size: .9em;
35 | font-weight: bold;
36 | }
37 | .dokuwiki table.diff th.minor {
38 | color: #999;
39 | }
40 |
41 | /* table body */
42 | .dokuwiki table.diff td {
43 | font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
44 | }
45 | .dokuwiki table.diff td.diff-blockheader {
46 | font-weight: bold;
47 | }
48 | .dokuwiki table.diff .diff-addedline {
49 | background-color: #cfc;
50 | color: inherit;
51 | }
52 | .dokuwiki table.diff .diff-deletedline {
53 | background-color: #fdd;
54 | color: inherit;
55 | }
56 | .dokuwiki table.diff td.diff-context {
57 | background-color: #eee;
58 | color: inherit;
59 | }
60 | .dokuwiki table.diff td.diff-addedline strong,
61 | .dokuwiki table.diff td.diff-deletedline strong {
62 | color: #f00;
63 | background-color: inherit;
64 | font-weight: bold;
65 | }
66 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_edit.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the edit view (?do=edit), preview
3 | * and section edit buttons.
4 | */
5 |
6 | /* edit view
7 | ********************************************************************/
8 |
9 | .dokuwiki div.editBox {
10 | }
11 |
12 | /*____________ toolbar ____________*/
13 |
14 | .dokuwiki div.toolbar {
15 | margin-bottom: .5em;
16 | overflow: hidden;
17 | }
18 | #draft__status {
19 | float: right;
20 | color: __text_alt__;
21 | background-color: inherit;
22 | }
23 | [dir=rtl] #draft__status {
24 | float: left;
25 | }
26 |
27 | #tool__bar {
28 | float: left;
29 | }
30 | [dir=rtl] #tool__bar {
31 | float: right;
32 | }
33 |
34 | /* buttons inside of toolbar */
35 | .dokuwiki div.toolbar button.toolbutton {
36 | }
37 | /* picker popups (outside of .dokuwiki) */
38 | div.picker {
39 | width: 300px;
40 | border: 1px solid __border__;
41 | background-color: __background_alt__;
42 | color: inherit;
43 | }
44 | /* picker for headlines */
45 | div.picker.pk_hl {
46 | width: auto;
47 | }
48 | /* buttons inside of picker */
49 | div.picker button.pickerbutton,
50 | div.picker button.toolbutton {
51 | padding: .1em .35em;
52 | border-width: 0;
53 | }
54 |
55 | /*____________ edit textarea ____________*/
56 |
57 | .dokuwiki textarea.edit {
58 | /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
59 | width: 700px;
60 | min-width: 100%;
61 | max-width: 100%;
62 | margin-bottom: .5em;
63 | }
64 |
65 | /*____________ below the textarea ____________*/
66 |
67 | .dokuwiki #wiki__editbar, /* old, until 2012-01-25 */
68 | .dokuwiki div.editBar /* new */ {
69 | overflow: hidden;
70 | margin-bottom: .5em;
71 | }
72 |
73 | /* size and wrap controls */
74 | #size__ctl {
75 | float: right;
76 | }
77 | [dir=rtl] #size__ctl {
78 | float: left;
79 | }
80 | #size__ctl img {
81 | cursor: pointer;
82 | }
83 |
84 | /* edit buttons */
85 | .dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */
86 | .dokuwiki div.editBar .editButtons /* new */ {
87 | display: inline;
88 | margin-right: 1em;
89 | }
90 | [dir=rtl] .dokuwiki #wiki__editbar .editButtons, /* old, until 2012-01-25 */
91 | [dir=rtl] .dokuwiki .editBar .editButtons /* new */ {
92 | margin-right: 0;
93 | margin-left: 1em;
94 | }
95 | .dokuwiki #wiki__editbar .editButtons input, /* old, until 2012-01-25 */
96 | .dokuwiki div.editBar .editButtons input /* new */ {
97 | }
98 |
99 | /* summary input and minor changes checkbox */
100 | .dokuwiki #wiki__editbar .summary, /* old, until 2012-01-25 */
101 | .dokuwiki div.editBar .summary /* new */ {
102 | display: inline;
103 | }
104 | .dokuwiki #wiki__editbar .summary label, /* old, until 2012-01-25 */
105 | .dokuwiki div.editBar .summary label /* new */ {
106 | vertical-align: middle;
107 | white-space: nowrap;
108 | }
109 | .dokuwiki #wiki__editbar .summary label span, /* old, until 2012-01-25 */
110 | .dokuwiki div.editBar .summary label span /* new */ {
111 | vertical-align: middle;
112 | }
113 | .dokuwiki #wiki__editbar .summary input, /* old, until 2012-01-25 */
114 | .dokuwiki div.editBar .summary input /* new */ {
115 | }
116 | /* change background colour if summary is missing */
117 | .dokuwiki #wiki__editbar .summary input.missing, /* old, until 2012-01-25 */
118 | .dokuwiki div.editBar .summary input.missing /* new */ {
119 | color: __text__;
120 | background-color: #ffcccc;
121 | }
122 |
123 | /* preview
124 | ********************************************************************/
125 |
126 | .dokuwiki div.preview {
127 | border: dotted __border__;
128 | border-width: .2em 0;
129 | padding: 1.4em 0;
130 | margin-bottom: 1.4em;
131 | }
132 |
133 | /* section edit buttons
134 | ********************************************************************/
135 |
136 | .dokuwiki .secedit {
137 | float: right;
138 | margin-top: -1.4em;
139 | }
140 | [dir=rtl] .dokuwiki .secedit {
141 | float: left;
142 | }
143 | .dokuwiki .secedit input.button {
144 | font-size: 75%;
145 | }
146 |
147 | /* style for section highlighting */
148 | .dokuwiki div.section_highlight {
149 | margin: 0 -1em; /* negative side margin = side padding + side border */
150 | padding: 0 .5em;
151 | border: solid __background_alt__;
152 | border-width: 0 .5em;
153 | }
154 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_fileuploader.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides the styles for the file uploader
3 | * used in the media manager (both fullscreen and popup).
4 | */
5 |
6 | .qq-uploader {
7 | position: relative;
8 | width: 100%;
9 | }
10 |
11 | .qq-uploader .error {
12 | color: #f00;
13 | background-color: #fff;
14 | }
15 |
16 | /* select file button */
17 |
18 | /* as this is not a real button, but functions as a button,
19 | it should be styled the same way as your other buttons,
20 | preferably in the same place, so just add '.qq-upload-button' to those styles */
21 | .qq-upload-button {
22 | display: inline-block;
23 | text-decoration: none;
24 | font-size: 100%;
25 | cursor: pointer;
26 | margin: 1px 1px 5px;
27 | }
28 |
29 |
30 | * html .qq-upload-button,
31 | *+html .qq-upload-button {
32 | display: inline;
33 | }
34 |
35 | .qq-upload-button-focus {
36 | outline: 1px dotted;
37 | }
38 |
39 | /* drop area */
40 |
41 | .qq-upload-drop-area {
42 | position: absolute;
43 | top: 0;
44 | left: 0;
45 | width: 100%;
46 | height: 100%;
47 | min-height: 70px;
48 | z-index: 2;
49 | background: __background_neu__;
50 | color: __text__;
51 | text-align: center;
52 | }
53 |
54 | .qq-upload-drop-area span {
55 | display: block;
56 | position: absolute;
57 | top: 50%;
58 | width: 100%;
59 | margin-top: -8px;
60 | font-size: 120%;
61 | }
62 |
63 | .qq-upload-drop-area-active {
64 | background: __background_alt__;
65 | }
66 |
67 | /* list of files to upload */
68 |
69 | div.qq-uploader ul {
70 | margin: 0;
71 | padding: 0;
72 | list-style: none;
73 | }
74 |
75 | .qq-uploader li {
76 | margin: 0 0 5px;
77 | color: __text__;
78 | }
79 |
80 | .qq-uploader li span,
81 | .qq-uploader li input,
82 | .qq-uploader li a {
83 | margin-right: 5px;
84 | }
85 |
86 | .qq-upload-file {
87 | display: block;
88 | font-weight: bold;
89 | }
90 |
91 | .qq-upload-spinner {
92 | display: inline-block;
93 | background: url("../../images/throbber.gif");
94 | width: 15px;
95 | height: 15px;
96 | vertical-align: text-bottom;
97 | }
98 |
99 | .qq-upload-size,
100 | .qq-upload-cancel {
101 | font-size: 85%;
102 | }
103 |
104 | .qq-upload-failed-text {
105 | display: none;
106 | }
107 | .qq-upload-fail .qq-upload-failed-text {
108 | display: inline;
109 | }
110 |
111 | .qq-action-container * {
112 | vertical-align: middle;
113 | }
114 | .qq-overwrite-check input {
115 | margin-left: 10px;
116 | }
117 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_footnotes.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for footnotes.
3 | */
4 |
5 | /*____________ footnotes inside the text ____________*/
6 |
7 | /* link to footnote inside the text */
8 | .dokuwiki sup a.fn_top {
9 | }
10 | /* JSpopup */
11 | div.insitu-footnote {
12 | max-width: 40%;
13 | min-width: 5em;
14 | }
15 |
16 | /*____________ footnotes at the bottom of the page ____________*/
17 |
18 | .dokuwiki div.footnotes {
19 | border-top: 1px solid __border__;
20 | padding: .5em 0 0 0;
21 | margin: 1em 0 0 0;
22 | clear: both;
23 | }
24 | .dokuwiki div.footnotes div.fn {
25 | }
26 | .dokuwiki div.footnotes div.fn sup a.fn_bot {
27 | font-weight: bold;
28 | }
29 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_forms.css:
--------------------------------------------------------------------------------
1 |
2 | /* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */
3 |
4 | /**
5 | * This file provides styles for forms in general and specifically
6 | * for ?do=
7 | * - login
8 | * - resendpwd
9 | * - register
10 | * - profile
11 | * - subscribe
12 | */
13 |
14 | /* ---------------- forms ------------------------ */
15 |
16 | .dokuwiki form {
17 | border: none;
18 | display: inline;
19 | }
20 |
21 | .dokuwiki label.block {
22 | display: block;
23 | text-align: right;
24 | font-weight: bold;
25 | }
26 | [dir=rtl] .dokuwiki label.block {
27 | text-align: left;
28 | }
29 |
30 | .dokuwiki label.simple {
31 | display: block;
32 | text-align: left;
33 | font-weight: normal;
34 | }
35 | [dir=rtl] .dokuwiki label.simple {
36 | text-align: right;
37 | }
38 |
39 | .dokuwiki label.block select,
40 | .dokuwiki label.block input.edit {
41 | width: 50%;
42 | }
43 |
44 | .dokuwiki label span {
45 | vertical-align: middle;
46 | }
47 |
48 | .dokuwiki fieldset {
49 | width: 400px;
50 | text-align: center;
51 | border: 1px solid __border__;
52 | padding: 0.5em;
53 | margin: auto;
54 | }
55 |
56 |
57 | .dokuwiki input.edit,
58 | .dokuwiki select.edit {
59 | vertical-align: middle;
60 | }
61 | .dokuwiki select.edit {
62 | padding: 0.1em 0;
63 | }
64 |
65 |
66 | .dokuwiki input.button,
67 | .dokuwiki button.button {
68 | vertical-align: middle;
69 | }
70 |
71 | /**
72 | * Styles for the subscription page
73 | */
74 |
75 | #subscribe__form {
76 | display: block;
77 | width: 400px;
78 | text-align: center;
79 | }
80 |
81 | #subscribe__form fieldset {
82 | text-align: left;
83 | margin: 0.5em 0;
84 | }
85 | [dir=rtl] #subscribe__form fieldset {
86 | text-align: right;
87 | }
88 |
89 | #subscribe__form label {
90 | display: block;
91 | margin: 0 0.5em 0.5em;
92 | }
93 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_imgdetail.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the image detail page (detail.php).
3 | */
4 |
5 | #dokuwiki__detail {
6 | padding: 1em;
7 | }
8 | #dokuwiki__detail h1 {
9 | }
10 |
11 | #dokuwiki__detail img {
12 | float: left;
13 | margin: 0 1.5em .5em 0;
14 | }
15 | [dir=rtl] #dokuwiki__detail img {
16 | float: right;
17 | margin-right: 0;
18 | margin-left: 1.5em;
19 | }
20 | #dokuwiki__detail div.img_detail {
21 | float: left;
22 | }
23 | [dir=rtl] #dokuwiki__detail div.img_detail {
24 | float: right
25 | }
26 |
27 | #dokuwiki__detail div.img_detail h2 {
28 | }
29 | #dokuwiki__detail div.img_detail dl {
30 | }
31 | #dokuwiki__detail div.img_detail dl dt {
32 | }
33 | #dokuwiki__detail div.img_detail dl dd {
34 | }
35 |
36 | #dokuwiki__detail p.back {
37 | clear: both;
38 | }
39 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_links.css:
--------------------------------------------------------------------------------
1 | /* ATTENTION: This file was edited for the "vector template for DokuWiki".
2 | - All url(images/[...]) rules where changed.
3 | See 00_starter-tmpl-notes.txt for details. */
4 |
5 | /**
6 | * This file provides styles for all types of links.
7 | */
8 |
9 | /*____________ links to wiki pages ____________*/
10 |
11 | /* existing wikipage */
12 | .dokuwiki a.wikilink1 {
13 | }
14 | /* not existing wikipage */
15 | .dokuwiki a.wikilink2 {
16 | text-decoration: none;
17 | }
18 | .dokuwiki a.wikilink2:link,
19 | .dokuwiki a.wikilink2:visited {
20 | border-bottom: 1px dashed;
21 | }
22 | .dokuwiki a.wikilink2:hover,
23 | .dokuwiki a.wikilink2:active,
24 | .dokuwiki a.wikilink2:focus {
25 | border-bottom-width: 0;
26 | }
27 |
28 | /* any link to current page */
29 | .dokuwiki span.curid a {
30 | font-weight: bold;
31 | }
32 |
33 | /*____________ other link types ____________*/
34 |
35 | .dokuwiki a.urlextern,
36 | .dokuwiki a.windows,
37 | .dokuwiki a.mail,
38 | .dokuwiki a.mediafile,
39 | .dokuwiki a.interwiki {
40 | background-repeat: no-repeat;
41 | background-position: 0 center;
42 | padding: 0 0 0 18px;
43 | }
44 | /* external link */
45 | .dokuwiki a.urlextern {
46 | background-image: url(static/3rd/dokuwiki/external-link.png);
47 | /*
48 | @deprecated, change since Adora Belle:
49 | background-image: url(../../images/external-link.png);
50 | */
51 | }
52 | /* windows share */
53 | .dokuwiki a.windows {
54 | background-image: url(static/3rd/dokuwiki/unc.png);
55 | /*
56 | @deprecated, change since Adora Belle:
57 | background-image: url(../../images/unc.png);
58 | */
59 | }
60 | /* email link */
61 | .dokuwiki a.mail {
62 | background-image: url(static/3rd/dokuwiki/email.png);
63 | /*
64 | @deprecated, change since Adora Belle:
65 | background-image: url(../../images/email.png);
66 | */
67 | }
68 |
69 | /* icons of the following are set by dokuwiki in lib/exe/css.php */
70 | /* link to some embedded media */
71 | .dokuwiki a.mediafile {
72 | }
73 | /* interwiki link */
74 | .dokuwiki a.interwiki {
75 | }
76 |
77 | /* RTL corrections */
78 | [dir=rtl] .dokuwiki a.urlextern,
79 | [dir=rtl] .dokuwiki a.windows,
80 | [dir=rtl] .dokuwiki a.mail,
81 | [dir=rtl] .dokuwiki a.interwiki,
82 | [dir=rtl] .dokuwiki a.mediafile {
83 | background-position: right center;
84 | padding: 0 18px 0 0;
85 | display: inline-block; /* needed for IE7 */
86 | }
87 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_modal.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for modal dialogues.
3 | */
4 |
5 | .dokuwiki .ui-widget {
6 | font-size: 100%;
7 | }
8 |
9 |
10 | /* link wizard (opens from the link button in the edit toolbar)
11 | ********************************************************************/
12 |
13 | #link__wiz {
14 | }
15 |
16 | #link__wiz_result {
17 | background-color: __background__;
18 | width: 293px;
19 | height: 193px;
20 | overflow: auto;
21 | border: 1px solid __border__;
22 | margin: 3px auto;
23 | text-align: left;
24 | line-height: 1;
25 | }
26 | [dir=rtl] #link__wiz_result {
27 | text-align: right;
28 | }
29 |
30 | #link__wiz_result div {
31 | padding: 3px 3px 3px 0;
32 | }
33 | [dir=rtl] #link__wiz_result div {
34 | padding: 3px 0 3px 3px;
35 | }
36 |
37 | #link__wiz_result div a {
38 | display: block;
39 | padding-left: 22px;
40 | min-height: 16px;
41 | background: transparent 3px center no-repeat;
42 | }
43 | [dir=rtl] #link__wiz_result div a {
44 | padding-right: 22px;
45 | background-position: right 0;
46 | }
47 |
48 | #link__wiz_result div.type_u a {
49 | background-image: url(../../images/up.png);
50 | }
51 | #link__wiz_result div.type_f a {
52 | background-image: url(../../images/page.png);
53 | }
54 | #link__wiz_result div.type_d a {
55 | background-image: url(../../images/ns.png);
56 | }
57 |
58 | #link__wiz_result div.even {
59 | background-color: __background_neu__;
60 | }
61 |
62 | #link__wiz_result div.selected {
63 | background-color: __background_alt__;
64 | }
65 |
66 | #link__wiz_result span {
67 | display: block;
68 | color: __text_neu__;
69 | margin-left: 22px;
70 | }
71 | [dir=rtl] #link__wiz_result span {
72 | margin-left: 0;
73 | margin-right: 22px;
74 | }
75 |
76 |
77 | /* media option wizard (opens when inserting media in the media popup)
78 | ********************************************************************/
79 |
80 | #media__popup {
81 | /* for backwards compatibility (not needed since Rincewind) */
82 | display: none;
83 | }
84 |
85 | #media__popup_content p {
86 | margin: 0 0 .5em;
87 | }
88 |
89 | #media__popup_content label {
90 | margin-right: .5em;
91 | cursor: default;
92 | }
93 | [dir=rtl] #media__popup_content label {
94 | margin-right: 0;
95 | margin-left: .5em;
96 | }
97 |
98 | #media__popup_content .button {
99 | margin-right: 1px;
100 | cursor: pointer;
101 | }
102 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_recent.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the recent changes (?do=recent) and
3 | * old revisions (?do=revisions).
4 | */
5 |
6 | /*____________ list of revisions / recent changes ____________*/
7 |
8 | /* select type of revisions (media/pages), should have a class on it's own, but hasn't (until after version 2012-01-25) */
9 | .dokuwiki #dw__recent label, /* old, until 2012-01-25 */
10 | .dokuwiki .changeType /* new */ {
11 | margin-bottom: .5em;
12 | display: block;
13 | }
14 |
15 | .dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */
16 | .dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */
17 | .dokuwiki form.changes ul li /* new */ {
18 | list-style: none;
19 | margin-left: 0;
20 | }
21 | [dir=rtl] .dokuwiki #dw__recent ul li, /* old, until 2012-01-25 */
22 | [dir=rtl] .dokuwiki #page__revisions ul li, /* old, until 2012-01-25 */
23 | [dir=rtl] .dokuwiki form.changes ul li /* new */ {
24 | margin-right: 0;
25 | }
26 |
27 | .dokuwiki #dw__recent ul li span, /* old, until 2012-01-25 */
28 | .dokuwiki #page__revisions ul li span, /* old, until 2012-01-25 */
29 | .dokuwiki form.changes ul li span, /* new */
30 | .dokuwiki #dw__recent ul li a, /* old, until 2012-01-25 */
31 | .dokuwiki #page__revisions ul li a, /* old, until 2012-01-25 */
32 | .dokuwiki form.changes ul li a /* new */ {
33 | vertical-align: middle;
34 | }
35 | .dokuwiki #dw__recent ul li span.user a, /* old, until 2012-01-25 */
36 | .dokuwiki #page__revisions ul li span.user a, /* old, until 2012-01-25 */
37 | .dokuwiki form.changes ul li span.user a /* new */ {
38 | vertical-align: bottom;
39 | }
40 | .dokuwiki #dw__recent ul li.minor, /* old, until 2012-01-25 */
41 | .dokuwiki #page__revisions ul li.minor, /* old, until 2012-01-25 */
42 | .dokuwiki form.changes ul li.minor /* new */ {
43 | opacity: .7;
44 | }
45 |
46 | .dokuwiki #dw__recent ul li span.date, /* old, until 2012-01-25 */
47 | .dokuwiki #page__revisions ul li span.date, /* old, until 2012-01-25 */
48 | .dokuwiki form.changes ul li span.date /* new */ {
49 | }
50 | .dokuwiki #dw__recent ul li a.diff_link, /* old, until 2012-01-25 */
51 | .dokuwiki #page__revisions ul li a.diff_link, /* old, until 2012-01-25 */
52 | .dokuwiki form.changes ul li a.diff_link /* new */ {
53 | vertical-align: baseline;
54 | }
55 | .dokuwiki #dw__recent ul li a.revisions_link, /* old, until 2012-01-25 */
56 | .dokuwiki #page__revisions ul li a.revisions_link, /* old, until 2012-01-25 */
57 | .dokuwiki form.changes ul li a.revisions_link /* new */ {
58 | vertical-align: baseline;
59 | }
60 | .dokuwiki #dw__recent ul li a.wikilink1, /* old, until 2012-01-25 */
61 | .dokuwiki #page__revisions ul li a.wikilink1, /* old, until 2012-01-25 */
62 | .dokuwiki form.changes ul li a.wikilink1, /* new */
63 | .dokuwiki #dw__recent ul li a.wikilink2, /* old, until 2012-01-25 */
64 | .dokuwiki #page__revisions ul li a.wikilink2, /* old, until 2012-01-25 */
65 | .dokuwiki form.changes ul li a.wikilink2 /* new */ {
66 | }
67 | .dokuwiki #dw__recent ul li span.sum, /* old, until 2012-01-25 */
68 | .dokuwiki #page__revisions ul li span.sum, /* old, until 2012-01-25 */
69 | .dokuwiki form.changes ul li span.sum /* new */ {
70 | font-weight: bold;
71 | }
72 | .dokuwiki #dw__recent ul li span.user, /* old, until 2012-01-25 */
73 | .dokuwiki #page__revisions ul li span.user, /* old, until 2012-01-25 */
74 | .dokuwiki form.changes ul li span.user /* new */ {
75 | }
76 |
77 |
78 | /*____________ page navigator ____________*/
79 |
80 | .dokuwiki div.pagenav {
81 | text-align: center;
82 | margin: 1.4em 0;
83 | }
84 | .dokuwiki div.pagenav-prev,
85 | .dokuwiki div.pagenav-next {
86 | display: inline;
87 | margin: 0 .5em;
88 | }
89 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_search.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides styles for the search results page (?do=search)
3 | * and the AJAX search popup.
4 | */
5 |
6 | /* search results page
7 | ********************************************************************/
8 |
9 | /* loading gif */
10 | #dw__loading {
11 | text-align: center;
12 | margin-bottom: 1.4em;
13 | }
14 |
15 | /*____________ matching pagenames ____________*/
16 |
17 | .dokuwiki div.search_quickresult {
18 | margin-bottom: 1.4em;
19 | }
20 | .dokuwiki div.search_quickresult h3 {
21 | }
22 | .dokuwiki div.search_quickresult ul {
23 | padding: 0;
24 | }
25 | .dokuwiki div.search_quickresult ul li {
26 | float: left;
27 | width: 12em;
28 | margin: 0 1.5em;
29 | }
30 | [dir=rtl] .dokuwiki div.search_quickresult ul li {
31 | float: right;
32 | }
33 |
34 | /*____________ search results ____________*/
35 |
36 | .dokuwiki div.search_result {
37 | margin-bottom: 1.2em;
38 | }
39 | /* search heading */
40 | .dokuwiki dl.search_results dt {
41 | font-weight: normal;
42 | margin-bottom: .2em;
43 | }
44 |
45 | /* search snippet */
46 | .dokuwiki div.search_result div.search_snippet, /* old, until 2012-01-25 */
47 | .dokuwiki dl.search_results dd /* new */ {
48 | color: __text_alt__;
49 | background-color: inherit;
50 | margin: 0 0 1.2em 0;
51 | }
52 |
53 | /* search hit in normal text */
54 | .dokuwiki .search_hit {
55 | color: __text__;
56 | background-color: __highlight__;
57 | }
58 | /* search hit in search results */
59 | .dokuwiki div.search_result strong.search_hit, /* old */
60 | .dokuwiki .search_results strong.search_hit /* new */ {
61 | font-weight: normal;
62 | }
63 | /* ellipsis separating snippets */
64 | .dokuwiki div.search_result .search_sep, /* old */
65 | .dokuwiki .search_results .search_sep /* new */ {
66 | color: __text__;
67 | background-color: inherit;
68 | }
69 |
70 | /* "nothing found" at search + media */
71 | .dokuwiki div.nothing {
72 | margin-bottom: 1.4em;
73 | }
74 |
75 |
76 | /* AJAX quicksearch popup
77 | ********************************************************************/
78 |
79 | .dokuwiki form.search div.no {
80 | position: relative;
81 | z-index: 1;
82 | }
83 |
84 | /* .JSpopup */
85 | .dokuwiki form.search div.ajax_qsearch {
86 | position: absolute;
87 | top: 0;
88 | left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */
89 | width: 12em;
90 | padding: 0.5em;
91 | font-size: .9em;
92 | z-index: 20;
93 | text-align: left;
94 | display: none;
95 | }
96 | [dir=rtl] .dokuwiki form.search div.ajax_qsearch {
97 | left: auto;
98 | right: -13.5em;
99 | text-align: right;
100 | }
101 |
102 | .dokuwiki form.search div.ajax_qsearch strong {
103 | display: block;
104 | margin-bottom: .3em;
105 | }
106 | .dokuwiki form.search div.ajax_qsearch ul {
107 | margin: 0 !important;
108 | padding: 0 !important;
109 | }
110 | .dokuwiki form.search div.ajax_qsearch ul li {
111 | margin: 0;
112 | padding: 0;
113 | display: block !important;
114 | }
115 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_tabs.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides the styles for general tabs.
3 | */
4 |
5 | .dokuwiki .tabs > ul,
6 | .dokuwiki ul.tabs {
7 | padding: 0;
8 | margin: 0;
9 | overflow: hidden;
10 | position: relative;
11 | }
12 | /* border underneath */
13 | .dokuwiki .tabs > ul:after,
14 | .dokuwiki ul.tabs:after {
15 | position: absolute;
16 | content: "";
17 | width: 100%;
18 | bottom: 0;
19 | left: 0;
20 | border-bottom: 1px solid __border__;
21 | z-index: 1;
22 | }
23 |
24 | .dokuwiki .tabs > ul li,
25 | .dokuwiki ul.tabs li {
26 | float: left;
27 | padding: 0;
28 | margin: 0;
29 | list-style: none;
30 | }
31 | [dir=rtl] .dokuwiki .tabs > ul li,
32 | [dir=rtl] .dokuwiki ul.tabs li {
33 | float: right;
34 | }
35 |
36 | .dokuwiki .tabs > ul li a,
37 | .dokuwiki ul.tabs li strong,
38 | .dokuwiki ul.tabs li a {
39 | display: inline-block;
40 | padding: .3em .8em;
41 | margin: 0 0 0 .3em;
42 | background-color: __background_neu__;
43 | color: __text__;
44 | border: 1px solid __border__;
45 | border-radius: .5em .5em 0 0;
46 | position: relative;
47 | z-index: 0;
48 | }
49 | [dir=rtl] .dokuwiki .tabs > ul li a,
50 | [dir=rtl] .dokuwiki ul.tabs li strong,
51 | [dir=rtl] .dokuwiki ul.tabs li a {
52 | margin: 0 .3em 0 0;
53 | }
54 |
55 | .dokuwiki ul.tabs li strong {
56 | font-weight: normal;
57 | }
58 |
59 | .dokuwiki ul.tabs li a:link,
60 | .dokuwiki ul.tabs li a:visited {
61 | }
62 | .dokuwiki .tabs > ul li a:hover,
63 | .dokuwiki .tabs > ul li a:active,
64 | .dokuwiki .tabs > ul li a:focus,
65 | .dokuwiki .tabs > ul li .curid a,
66 | .dokuwiki .tabs > ul .active a,
67 | .dokuwiki ul.tabs li a:hover,
68 | .dokuwiki ul.tabs li a:active,
69 | .dokuwiki ul.tabs li a:focus,
70 | .dokuwiki ul.tabs li strong {
71 | background-color: __background_alt__;
72 | color: __text__;
73 | text-decoration: none;
74 | font-weight: normal;
75 | }
76 |
77 | .dokuwiki .tabs > ul li .curid a,
78 | .dokuwiki .tabs > ul li .active a,
79 | .dokuwiki ul.tabs li strong {
80 | z-index: 2;
81 | border-bottom-color: __background_alt__;
82 | }
83 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/_toc.css:
--------------------------------------------------------------------------------
1 | /* ATTENTION: This file was edited for the "vector template for DokuWiki".
2 | - All url(images/[...]) rules where changed.
3 | See 00_starter-tmpl-notes.txt for details. */
4 |
5 | /**
6 | * This file provides styles for the TOC (table of contents), the
7 | * sitemap (?do=index) and backlinks (?do=backlink).
8 | */
9 |
10 | /* toc
11 | ********************************************************************/
12 |
13 | /* toc container */
14 | .dokuwiki div.toc, /* old, until 2012-01-25 */
15 | #dw__toc /* new */ {
16 | float: right;
17 | margin: 0 0 1.4em 1.4em;
18 | width: 12em;
19 | background-color: __background_alt__;
20 | color: inherit;
21 | }
22 | [dir=rtl] .dokuwiki div.toc, /* old, until 2012-01-25 */
23 | [dir=rtl] #dw__toc /* new */ {
24 | float: left;
25 | margin: 0 1.4em 1.4em 0;
26 | }
27 |
28 | /*____________ toc header ____________*/
29 |
30 | .dokuwiki div.tocheader, /* old */
31 | #dw__toc h3 /* new */ {
32 | padding: .2em .5em;
33 | font-weight: bold;
34 | margin-bottom: 0;
35 | font-size: 1em;
36 | }
37 |
38 | .dokuwiki .toc span.toc_open, /* old */
39 | .dokuwiki .toc span.toc_close, /* old */
40 | #dw__toc h3 strong /* new */ {
41 | float: right;
42 | margin: 0 .2em;
43 | line-height: 1;
44 | }
45 | [dir=rtl] .dokuwiki .toc span.toc_open, /* old */
46 | [dir=rtl] .dokuwiki .toc span.toc_close, /* old */
47 | [dir=rtl] #dw__toc h3 strong /* new */ {
48 | float: left;
49 | }
50 |
51 | /*____________ toc list ____________*/
52 |
53 | .dokuwiki #toc__inside,
54 | #dw__toc > div {
55 | padding: .2em .5em;
56 | }
57 | .dokuwiki #toc__inside ul, /* old */
58 | #dw__toc ul /* new */ {
59 | padding: 0;
60 | margin: 0;
61 | }
62 | .dokuwiki #toc__inside ul li, /* old */
63 | #dw__toc ul li /* new */ {
64 | list-style: none;
65 | padding: 0;
66 | margin: 0;
67 | line-height: 1.1;
68 | }
69 | .dokuwiki #toc__inside ul li div.li, /* old */
70 | #dw__toc ul li div.li /* new */ {
71 | padding: .15em 0;
72 | }
73 | .dokuwiki #toc__inside ul ul, /* old */
74 | #dw__toc ul ul /* new */ {
75 | padding-left: 1em;
76 | }
77 | [dir=rtl] .dokuwiki #toc__inside ul ul, /* old */
78 | [dir=rtl] #dw__toc ul ul /* new */ {
79 | padding-left: 0;
80 | padding-right: 1em;
81 | }
82 | .dokuwiki #toc__inside ul ul li, /* old */
83 | #dw__toc ul ul li /* new */ {
84 | }
85 | .dokuwiki #toc__inside ul li a, /* old */
86 | #dw__toc ul li a /* new */ {
87 | }
88 |
89 | /* in case of toc list jumping one level
90 | (e.g. if heading level 3 follows directly after heading level 1) */
91 | .dokuwiki #toc__inside ul li.clear, /* old */
92 | #dw__toc ul li.clear /* new */ {
93 | }
94 |
95 |
96 | /* sitemap (and backlinks)
97 | ********************************************************************/
98 |
99 | .dokuwiki ul.idx {
100 | padding-left: 0;
101 | }
102 | [dir=rtl] .dokuwiki ul.idx {
103 | padding-right: 0;
104 | }
105 | .dokuwiki ul.idx li {
106 | list-style-image: url(static/3rd/dokuwiki/bullet.png);
107 | /*
108 | @deprecated, change since Adora Belle:
109 | list-style-image: url(../../images/bullet.png);
110 | */
111 | }
112 | .dokuwiki ul.idx li.open {
113 | list-style-image: url(static/3rd/dokuwiki/open.png);
114 | /*
115 | @deprecated, change since Adora Belle:
116 | list-style-image: url(../../images/open.png);
117 | */
118 | }
119 | .dokuwiki ul.idx li.closed {
120 | list-style-image: url(static/3rd/dokuwiki/closed.png);
121 | /*
122 | @deprecated, change since Adora Belle:
123 | list-style-image: url(../../images/closed.png);
124 | */
125 | }
126 | [dir=rtl] .dokuwiki ul.idx li.closed {
127 | list-style-image: url(static/3rd/dokuwiki/closed-rtl.png);
128 | /*
129 | @deprecated, change since Adora Belle:
130 | list-style-image: url(../../images/closed-rtl.png);
131 | */
132 | }
133 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/apple-touch-icon.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/bullet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/bullet.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/buttonshadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/buttonshadow.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/closed-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed-rtl.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/closed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed.gif
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/closed.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/email.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/external-link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/external-link.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/favicon.ico
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/inputshadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/inputshadow.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/logo.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/logo.png-readme.txt:
--------------------------------------------------------------------------------
1 | en: To use an own logo, DO NOT replace the logo.png in here. Simply store your
2 | logo.[png|gif|jpg] into "/vector/user/". See README for details.
3 |
4 | de: Um ein eigenes Logo zu nutzen bitte NICHT die logo.png in diesem Verzeichnis
5 | ersetzen, sondern einfach eine logo.[png|gif|jpg] unterhalb "/vector/user/"
6 | abspeichern. Siehe README für weiter Details.
7 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/open.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/open.gif
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/open.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/print.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This file provides the styles for printing.
3 | *
4 | * @todo: improve and finish
5 | */
6 |
7 | body {
8 | /*
9 | font: normal 12pt/1.2 serif;
10 | color: #000;
11 | background-color: #fff;
12 | */
13 | }
14 |
15 | /* hide certain sections */
16 | .a11y,
17 | div.notify, div.info, div.success, div.error,
18 | #dokuwiki__header .tools, #dokuwiki__aside,
19 | .dokuwiki .breadcrumbs, .dokuwiki .toc, #dw__toc, .dokuwiki .secedit,
20 | #dokuwiki__pagetools, #dokuwiki__footer {
21 | display: none;
22 | }
23 |
24 | .dokuwiki h1,
25 | .dokuwiki h2,
26 | .dokuwiki h3,
27 | .dokuwiki h4,
28 | .dokuwiki h5,
29 | .dokuwiki caption,
30 | .dokuwiki legend {
31 | clear: both;
32 | }
33 |
34 | .dokuwiki ul {
35 | list-style: disc outside;
36 | }
37 | .dokuwiki ol {
38 | list-style: decimal outside;
39 | }
40 | .dokuwiki ol ol {
41 | list-style-type: lower-alpha;
42 | }
43 | .dokuwiki ol ol ol {
44 | list-style-type: upper-roman;
45 | }
46 | .dokuwiki ol ol ol ol {
47 | list-style-type: upper-alpha;
48 | }
49 | .dokuwiki ol ol ol ol ol {
50 | list-style-type: lower-roman;
51 | }
52 |
53 | /* undo icons */
54 | .dokuwiki a:link,
55 | .dokuwiki a:visited {
56 | text-decoration: underline;
57 | color: #333;
58 | background-color: inherit;
59 | background-image: none;
60 | padding: 0;
61 | }
62 |
63 | /* display href after link */
64 | a.urlextern:after,
65 | a.interwiki:after,
66 | a.mail:after {
67 | content: " [" attr(href) "]";
68 | font-size: 90%;
69 | }
70 |
71 | /* code blocks */
72 | .dokuwiki pre {
73 | font-family: monospace;
74 | }
75 | .dokuwiki dl.code dt,
76 | .dokuwiki dl.file dt {
77 | font-weight: bold;
78 | }
79 |
80 | /* images */
81 | .dokuwiki img {
82 | border-width: 0;
83 | vertical-align: middle;
84 | }
85 | .dokuwiki img.media {
86 | margin: .2em 0;
87 | }
88 | .dokuwiki img.medialeft {
89 | margin: .2em 1.5em .2em 0;
90 | }
91 | .dokuwiki img.mediaright {
92 | margin: .2em 0 .2em 1.5em;
93 | }
94 | .dokuwiki img.mediacenter {
95 | margin: .2em auto;
96 | }
97 |
98 | /* align table cells */
99 | .dokuwiki .leftalign {
100 | text-align: left;
101 | }
102 | .dokuwiki .centeralign {
103 | text-align: center;
104 | }
105 | .dokuwiki .rightalign {
106 | text-align: right;
107 | }
108 |
109 | /* underline */
110 | .dokuwiki em.u {
111 | font-style: normal;
112 | text-decoration: underline;
113 | }
114 | .dokuwiki em em.u {
115 | font-style: italic;
116 | }
117 |
118 | div.clearer {
119 | clear: both;
120 | line-height: 0;
121 | height: 0;
122 | overflow: hidden;
123 | }
124 |
125 | .dokuwiki blockquote {
126 | padding: 0 10pt;
127 | margin: 0;
128 | border: solid #ccc;
129 | border-width: 0 0 0 2pt;
130 | }
131 | [dir=rtl] .dokuwiki blockquote {
132 | border-width: 0 2pt 0 0;
133 | }
134 |
135 | /* tables */
136 | .dokuwiki table {
137 | border-collapse: collapse;
138 | empty-cells: show;
139 | border-spacing: 0;
140 | border: 1pt solid #ccc;
141 | }
142 | .dokuwiki th,
143 | .dokuwiki td {
144 | padding: 3pt 5pt;
145 | margin: 0;
146 | vertical-align: top;
147 | border: 1pt solid #666;
148 | text-align: left;
149 | }
150 | [dir=rtl] .dokuwiki th,
151 | [dir=rtl] .dokuwiki td {
152 | text-align: right;
153 | }
154 | .dokuwiki th {
155 | font-weight: bold;
156 | }
157 |
158 |
159 | /*____________ a bit of layout ____________*/
160 |
161 | #dokuwiki__header {
162 | border-bottom: 2pt solid #ccc;
163 | }
164 | #dokuwiki__header h1 {
165 | font-size: 1.5em;
166 | }
167 | #dokuwiki__header h1 a {
168 | text-decoration: none;
169 | }
170 | .dokuwiki div.footnotes {
171 | clear: both;
172 | border-top: 1pt solid #000;
173 | margin-top: 10pt;
174 | }
175 |
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/resizecol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/resizecol.png
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/tocdot2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/tocdot2.gif
--------------------------------------------------------------------------------
/static/3rd/dokuwiki/unc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/dokuwiki/unc.png
--------------------------------------------------------------------------------
/static/3rd/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/3rd/vector/arrow-down-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/arrow-down-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/audio-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/audio-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/border.png
--------------------------------------------------------------------------------
/static/3rd/vector/bullet-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/bullet-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/document-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/document-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/edit-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/edit-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/external-link-ltr-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/external-link-ltr-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/external-link-rtl-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/external-link-rtl-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/file-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/file-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/3rd/vector/link-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/link-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/lock-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/lock-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/magnify-clip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/magnify-clip.png
--------------------------------------------------------------------------------
/static/3rd/vector/mail-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/mail-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/news-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/news-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/page-base.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/page-base.png
--------------------------------------------------------------------------------
/static/3rd/vector/page-fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/page-fade.png
--------------------------------------------------------------------------------
/static/3rd/vector/portal-break-ltr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break-ltr.png
--------------------------------------------------------------------------------
/static/3rd/vector/portal-break-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break-rtl.png
--------------------------------------------------------------------------------
/static/3rd/vector/portal-break.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/portal-break.png
--------------------------------------------------------------------------------
/static/3rd/vector/preferences-base.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-base.png
--------------------------------------------------------------------------------
/static/3rd/vector/preferences-break.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-break.png
--------------------------------------------------------------------------------
/static/3rd/vector/preferences-edge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-edge.png
--------------------------------------------------------------------------------
/static/3rd/vector/preferences-fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/preferences-fade.png
--------------------------------------------------------------------------------
/static/3rd/vector/search-fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-fade.png
--------------------------------------------------------------------------------
/static/3rd/vector/search-ltr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-ltr.png
--------------------------------------------------------------------------------
/static/3rd/vector/search-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/search-rtl.png
--------------------------------------------------------------------------------
/static/3rd/vector/tab-break.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-break.png
--------------------------------------------------------------------------------
/static/3rd/vector/tab-current-fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-current-fade.png
--------------------------------------------------------------------------------
/static/3rd/vector/tab-normal-fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/tab-normal-fade.png
--------------------------------------------------------------------------------
/static/3rd/vector/talk-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/talk-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/user-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/user-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/video-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/video-icon.png
--------------------------------------------------------------------------------
/static/3rd/vector/watch-icon-loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/watch-icon-loading.gif
--------------------------------------------------------------------------------
/static/3rd/vector/watch-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/3rd/vector/watch-icons.png
--------------------------------------------------------------------------------
/static/css/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/css/print.css:
--------------------------------------------------------------------------------
1 | /******************************************************************************
2 | ******************************** ATTENTION *********************************
3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
4 | ******************************************************************************
5 | If you want to add some own screen CSS, have a look at the README of this
6 | template and "/user/print.css". You have been warned!
7 | *****************************************************************************/
8 |
9 | body {
10 | font: normal 80%/1.4 sans-serif;
11 | }
12 | div#content .dokuwiki h1,
13 | div#content .dokuwiki h2,
14 | div#content .dokuwiki h3,
15 | div#content .dokuwiki h4,
16 | div#content .dokuwiki h5,
17 | div#content .dokuwiki h6 {
18 | border-bottom: 0 none;
19 | }
20 | div#content .dokuwiki h1,
21 | div#content .dokuwiki h2 {
22 | font-weight: bold;
23 | }
24 | div#content .dokuwiki h1 {
25 | font-weight: 135%;
26 | }
27 | div#content .dokuwiki h2 {
28 | font-weight: 130%;
29 | }
30 | div#content .dokuwiki h3,
31 | div#content .dokuwiki h4,
32 | div#content .dokuwiki h5,
33 | div#content .dokuwiki h6 {
34 | font-weight: normal;
35 | text-decoration: underline;
36 | }
37 |
38 | /* define the "noprint" class used by the original MediaWiki vector skin */
39 | .noprint {
40 | display: none;
41 | }
42 |
43 | /* remove some link styling */
44 | div.dokuwiki a {
45 | text-decoration: none !important;
46 | }
47 |
48 | /* remove interwiki link icons */
49 | div.dokuwiki a.interwiki {
50 | background: transparent none;
51 | padding: 0;
52 | }
53 |
54 | /* quotes */
55 | div#content .dokuwiki blockquote {
56 | border-left: 2px solid __border__;
57 | padding-left: 3px;
58 | margin-left: 0.2em;
59 | }
60 |
61 | /* preformatted stuff, source code */
62 | div#content .dokuwiki code,
63 | div#content .dokuwiki pre,
64 | div#content .dokuwiki pre.code,
65 | div#content .dokuwiki pre.file {
66 | font-size: 100%;
67 | }
68 | div#content .dokuwiki pre,
69 | div#content .dokuwiki pre.code,
70 | div#content .dokuwiki pre.file {
71 | line-height: 1.2em;
72 | background-color: __background_other__;
73 | }
74 | div#content .dokuwiki dl.file,
75 | div#content .dokuwiki dl.file dd,
76 | div#content .dokuwiki dl.file dt {
77 | margin-left: 0;
78 | }
79 | div#content .dokuwiki dl.file dt {
80 | background-color: __background_other__;
81 | }
82 |
83 | /* misc tweaks */
84 | div#content,
85 | div#bodyContent {
86 | margin-left: 0;
87 | border: 0 none;
88 | font-size: 1em;
89 | }
90 | body {
91 | background-image: none;
92 | background-color: #fff;
93 | }
94 |
95 | /* tag plugin: hide tag row */
96 | div.tags {
97 | display: none;
98 | }
99 |
100 | /* pagelist plugin: listing tables */
101 | div#content .dokuwiki table.ul,
102 | div#content .dokuwiki table.ul tr,
103 | div#content .dokuwiki table.ul td {
104 | border: 0 none;
105 | }
106 | div#content .dokuwiki table.ul td.date,
107 | div#content .dokuwiki table.ul td.user {
108 | display: none;
109 | }
110 | div#content .dokuwiki table.ul ul,
111 | div#content .dokuwiki table.ul ol,
112 | div#content .dokuwiki table.ul li {
113 | margin-top: 0;
114 | margin-bottom: 0;
115 | padding-top: 0;
116 | padding-bottom: 0;
117 | }
118 |
119 | /* wrap plugin: modify some inline styles */
120 | div#content .dokuwiki span.wrap_box,
121 | div#content .dokuwiki span.wrap_danger,
122 | div#content .dokuwiki span.wrap_warning,
123 | div#content .dokuwiki span.wrap_caution,
124 | div#content .dokuwiki span.wrap_notice,
125 | div#content .dokuwiki span.wrap_safety,
126 | div#content .dokuwiki span.wrap_info,
127 | div#content .dokuwiki span.wrap_important,
128 | div#content .dokuwiki span.wrap_alert,
129 | div#content .dokuwiki span.wrap_tip,
130 | div#content .dokuwiki span.wrap_help,
131 | div#content .dokuwiki span.wrap_todo,
132 | div#content .dokuwiki span.wrap_download {
133 | border-top: 0 none;
134 | border-right: 0 none;
135 | border-left: 0 none;
136 | border-bottom: 1px dashed;
137 | padding: 0;
138 | }
139 |
--------------------------------------------------------------------------------
/static/css/rtl.css:
--------------------------------------------------------------------------------
1 | /******************************************************************************
2 | ******************************** ATTENTION *********************************
3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
4 | ******************************************************************************
5 | If you want to add some own screen CSS, have a look at the README of this
6 | template and "/user/rtl.css". You have been warned!
7 | *****************************************************************************/
8 |
9 | /* right-to-left-support is still TODO */
10 |
11 | /* external links */
12 | div#bodyContent a.urlextern {
13 | background: url(static/3rd/vector/external-link-rtl-icon.png) center left no-repeat;
14 | padding: 0 13px 0 0;
15 | }
16 |
--------------------------------------------------------------------------------
/static/css/screen_iehacks.css:
--------------------------------------------------------------------------------
1 | /******************************************************************************
2 | ******************************** ATTENTION *********************************
3 | DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
4 | ******************************************************************************
5 | If you want to add some own screen CSS, have a look at the README of this
6 | template and "/user/screen.css". You have been warned!
7 | *****************************************************************************/
8 |
9 | /* This file get loaded by a conditional comment. The style.ini is not used as
10 | DokuWiki's internal CSS handling stumbles upon most of these Internet
11 | Explorer specific browser hacks and corrections. */
12 |
13 | /* buttons */
14 | div.dokuwiki input.button,
15 | div.dokuwiki button.button {
16 | #line-height: 1em; /* fix MSIE 6, 7 */
17 | }
18 | div.dokuwiki button.toolbutton {
19 | height: 22px\9; /* fix MSIE 6, 7, 8 */
20 | }
21 | /* media manager popup */
22 | * html.popup #media__manager {
23 | height: 465px; /* fix MSIE 6 */
24 | }
25 | /* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */
26 | textarea,
27 | .dokuwiki #dw__editform textarea.edit {
28 | /* fix scrollbar flickers in IE8 standards mode, see
29 | http://j.mp/bHExde and http://j.mp/ad7Abj for details */
30 | width: 450px\9;
31 | max-width: 100%\9;
32 | min-width: 100%\9;
33 | /* overwrite original vector with fixes for IE6/7 */
34 | #width: 100% !important;
35 | border: auto;
36 | }
37 | /* MSIE 7: media manager */
38 | *:first-child+html #mediamanager__page .panelContent li {
39 | list-style: none !important;
40 | list-style-image: none !important;
41 | }
42 | /* ajax quicksearch: MSIE 6/7 */
43 | * html #qsearch__out {
44 | width: 206px;
45 | }
46 | #qsearch__out ul {
47 | #list-style: none !important;
48 | #list-style-image: none !important;
49 | }
50 | #qsearch__out li {
51 | #width: 206px;
52 | }
53 | /* admin menu icons: MSIE 6/7 */
54 | .dokuwiki ul.admin_tasks li div.li {
55 | #border-left: 1px dashed #fff; /* invisible border triggers IE to render the stuff */
56 | }
57 | /* list style: MSIE 6/7 */
58 | div#panel div.portal div.body ul {
59 | #list-style: none outside none !important;
60 | }
61 | form#page__revisions ul, /* old, until 2012-01-25 */
62 | form#dw__recent ul, /* old, until 2012-01-25 */
63 | form.changes { /* new, since 2012-09-10 */
64 | #list-style: none outside none !important;
65 | }
66 |
--------------------------------------------------------------------------------
/static/img/button-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-css.png
--------------------------------------------------------------------------------
/static/img/button-donate.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-donate.gif
--------------------------------------------------------------------------------
/static/img/button-dw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-dw.png
--------------------------------------------------------------------------------
/static/img/button-rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-rss.png
--------------------------------------------------------------------------------
/static/img/button-vector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-vector.png
--------------------------------------------------------------------------------
/static/img/button-xhtml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arsava/dokuwiki-template-vector/9eec2c620de988bb0750565b784bb8f4d50d2faa/static/img/button-xhtml.png
--------------------------------------------------------------------------------
/static/img/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/js/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/static/mobile.less:
--------------------------------------------------------------------------------
1 | div.mobile-hamburger,
2 | div.mobile-menu,
3 | div.mobile-logo {
4 | display: none;
5 | }
6 |
7 |
8 | @media only screen and (max-width: 750px) {
9 |
10 | div.mobile-hamburger {
11 | display: block;
12 | position: absolute;
13 | top: 0;
14 | right: 0;
15 | z-index: 1000;
16 |
17 | cursor: pointer;
18 | font-size: 2.5rem;
19 | line-height: 3rem;
20 |
21 | width: 3rem;
22 | height: 3rem;
23 | text-align: center;
24 |
25 | &::before {
26 | content: '☰';
27 | }
28 | }
29 |
30 | div.mobile-hamburger.open {
31 | background-color: @ini_background;
32 | &::before {
33 | content: '✕';
34 | }
35 | }
36 |
37 | div.mobile-logo {
38 | display: block;
39 | a {
40 | display: block;
41 | width: 100%;
42 | height: 3rem;
43 | background-size: contain;
44 | background-repeat: no-repeat;
45 | background-position: left;
46 | }
47 | }
48 |
49 | div.mobile-menu {
50 | position: absolute;
51 | top: 0;
52 | right: 0;
53 |
54 | height: 100%;
55 | overflow-y: auto;
56 | -ms-overflow-style: none; // IE 10+
57 | overflow: -moz-scrollbars-none; // Firefox
58 | &::-webkit-scrollbar {
59 | display: none; // Safari and Chrome
60 | }
61 |
62 | z-index: 500;
63 | background-color: @ini_background;
64 | box-shadow: -5px 0 5px @ini_border;
65 |
66 | padding-top: 3rem;
67 |
68 | a {
69 | color: @ini_existing;
70 | }
71 |
72 | .mobile-search {
73 | display: block;
74 | margin: 0.25em;
75 | div {
76 | display: flex;
77 |
78 | input,
79 | button {
80 | line-height: inherit;
81 | flex-grow: 0;
82 | }
83 | input {
84 | flex-grow: 1;
85 | }
86 | }
87 | }
88 |
89 | ul {
90 | padding: 0;
91 | list-style-type: none;
92 | list-style-image: none !important;
93 | margin: 0.25em 0;
94 |
95 | border-bottom: 1px solid @ini_border;
96 |
97 | li {
98 | margin: 0;
99 | padding: 0.25em;
100 | }
101 | }
102 | }
103 |
104 | div.mobile-menu.open {
105 | display: block;
106 | }
107 |
108 | #page-base,
109 | #head-base,
110 | #head,
111 | #panel {
112 | display: none;
113 | }
114 |
115 | div#content,
116 | div#footer {
117 | margin-left: 0;
118 | }
119 |
120 | }
121 |
122 | // translation plugin adjustment
123 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:before,
124 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:before,
125 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:after,
126 | div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:after {
127 | content: '';
128 | }
129 |
--------------------------------------------------------------------------------
/style.ini:
--------------------------------------------------------------------------------
1 | ;;
2 | ; INI to handle loading of the CSS files of the "vector" template for DokuWiki
3 | ;
4 | ;
5 | ; LICENSE: This file is open source software (OSS) and may be copied under
6 | ; certain conditions. See COPYING file for details or try to contact
7 | ; the author(s) of this file in doubt.
8 | ;
9 | ; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
10 | ; @author ARSAVA
11 | ; @link https://www.dokuwiki.org/template:vector
12 | ; @link https://www.dokuwiki.org/devel:style.ini
13 |
14 |
15 |
16 | ; Please see http://www.php.net/manual/en/function.parse-ini-file.php
17 | ; for limitations of the ini format used here.
18 |
19 | ; To extend this file or make changes to it, it is recommended to create
20 | ; a style.local.ini file to prevent losing any changes after an upgrade.
21 | ; Please don't forget to copy the section your changes should be under
22 | ; (i.e. [stylesheets] or [replacements]) into that file as well.
23 |
24 | ; Define the stylesheets your template uses here. The second value
25 | ; defines for which output media the style should be loaded. Currently
26 | ; print, screen and all are supported.
27 |
28 | [stylesheets]
29 | ; screen
30 | ; load the DokuWiki styles. See why I am doing this.
31 | static/3rd/dokuwiki/_imgdetail.css = screen
32 | static/3rd/dokuwiki/_media_popup.css = screen
33 | static/3rd/dokuwiki/_media_fullscreen.css = screen
34 | static/3rd/dokuwiki/_fileuploader.css = screen
35 | static/3rd/dokuwiki/_tabs.css = screen
36 | static/3rd/dokuwiki/_links.css = screen
37 | static/3rd/dokuwiki/_toc.css = screen
38 | static/3rd/dokuwiki/_footnotes.css = screen
39 | static/3rd/dokuwiki/_search.css = screen
40 | static/3rd/dokuwiki/_recent.css = screen
41 | static/3rd/dokuwiki/_diff.css = screen
42 | static/3rd/dokuwiki/_edit.css = screen
43 | static/3rd/dokuwiki/_modal.css = screen
44 | static/3rd/dokuwiki/_forms.css = screen
45 | static/3rd/dokuwiki/_admin.css = screen
46 |
47 | ; load the most important MediaWiki vector styles
48 | static/3rd/vector/main-ltr.css = screen
49 |
50 | ; load the specific "vector for dokuwiki" styles
51 | static/css/screen.css = screen
52 | user/screen.css = screen
53 |
54 |
55 | ; print
56 | ; note to myself: don't forget to respect the "print" action for the "printable
57 | ; version" within "main.php" when adding new print styles.
58 | ; I think this function is silly (cause therefore we got
59 | ; different "media" but some people *always* searching for such
60 | ; print version links). Good text about this:
61 | ; load the DokuWiki styles. See why I am doing this.
62 | static/3rd/dokuwiki/print.css = print
63 |
64 | ; load the specific "vector for dokuwiki" styles
65 | static/css/print.css = print
66 | user/print.css = print
67 |
68 |
69 | ; right-to-left
70 | ; load the most important MediaWiki vector styles
71 | static/3rd/vector/main-rtl.css = rtl
72 |
73 | ; load the specific "vector for dokuwiki" styles
74 | static/css/rtl.css = rtl
75 | user/rtl.css = rtl
76 |
77 |
78 |
79 | static/mobile.less = all
80 |
81 |
82 | ; This section is used to configure some placeholder values used in
83 | ; the stylesheets. Changing this file is the simplest method to
84 | ; give your wiki a new look.
85 | [replacements]
86 |
87 | ;--------------------------------------------------------------------------
88 | ;------ guaranteed dokuwiki color placeholders that every plugin can use
89 | ; main text and background colors
90 | ;
91 | __text__ = "#000"
92 | __background__ = "#fff"
93 | ; alternative text and background colors
94 | __text_alt__ = "#000"
95 | __background_alt__ = "#dee7ec"
96 | ; neutral text and background colors
97 | __text_neu__ = "#000"
98 | __background_neu__ = "#fff"
99 | ; border color
100 | __border__ = "#8cacbb"
101 | ;--------------------------------------------------------------------------
102 |
103 | ; these are used for links
104 | __existing__ = "#002bb8"
105 | __missing__ = "#ba0000"
106 |
107 | ; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes
108 | ; from core and will therefore be removed from here if pre-Adora Belle support
109 | ; will be dropped)
110 | __highlight__ = "#ff9"
111 |
--------------------------------------------------------------------------------
/template.info.txt:
--------------------------------------------------------------------------------
1 | base vector
2 | author ARSAVA
3 | email dokuwiki@dev.arsava.com
4 | date 2014-02-09
5 | name vector template
6 | desc vector brings you the year 2010 MediaWiki/Wikipedia look and feel for DokuWiki.
7 | url https://www.dokuwiki.org/template:vector
8 |
--------------------------------------------------------------------------------
/user/.htaccess:
--------------------------------------------------------------------------------
1 | #Note: If this file prevents running vector in your environment, simply delete
2 | # it. Everything should be safe even if the files blocked by the following
3 | # Apache rules are accessible.
4 | # The reason for protecting these files is to to keep searchengines/foo
5 | # away from indexing files containing version information, names and/or not
6 | # necessarily public template parts by default.
7 |
8 | Order Deny,Allow
9 | Deny from all
10 |
11 |
--------------------------------------------------------------------------------
/user/boxes.php.dist:
--------------------------------------------------------------------------------
1 |
26 | * @link https://www.dokuwiki.org/template:vector
27 | * @link https://www.dokuwiki.org/devel:configuration
28 | */
29 |
30 |
31 | //check if we are running within the DokuWiki environment
32 | if (!defined("DOKU_INC")){
33 | die();
34 | }
35 |
36 |
37 | //note: The boxes will be rendered in the order they were defined. Means:
38 | // first box will be rendered first, last box will be rendered at last.
39 |
40 | $_vector_boxes["example1"]["headline"] = "Hello World!";
41 | $_vector_boxes["example1"]["xhtml"] = "DokuWiki with vector... rules!";
42 |
43 |
44 |
45 | //examples: remove comments to see what is happening
46 |
47 | /*
48 | $_vector_boxes["example2"]["headline"] = "Some links";
49 | $_vector_boxes["example2"]["xhtml"] = "";
54 | */
55 |
56 |
57 | /*
58 | $_vector_boxes["example3"]["headline"] = "Buttons";
59 | $_vector_boxes["example3"]["xhtml"] = "
";
60 | */
61 |
62 |
63 | /*
64 | //include the content of another wiki page (you have to create it first, for
65 | //sure. In this example, the page "wiki:your_page_here" is used)
66 | $_vector_boxes["example4"]["headline"] = "wiki:your_page_here";
67 | $_vector_boxes["example4"]["xhtml"] = tpl_include_page("wiki:your_page_here", false);
68 | */
69 |
70 |
--------------------------------------------------------------------------------
/user/buttons.php.dist:
--------------------------------------------------------------------------------
1 |
26 | * @link https://www.dokuwiki.org/template:vector
27 | * @link https://www.dokuwiki.org/devel:configuration
28 | */
29 |
30 |
31 | //check if we are running within the DokuWiki environment
32 | if (!defined("DOKU_INC")){
33 | die();
34 | }
35 |
36 |
37 | //note: The buttons will be rendered in the order they were defined. Means:
38 | // first button will be rendered first, last button will be rendered at
39 | // last.
40 |
41 |
42 | //W3C CSS validator button
43 | $_vector_btns["valid_css"]["img"] = DOKU_TPL."static/img/button-css.png";
44 | $_vector_btns["valid_css"]["href"] = "http://jigsaw.w3.org/css-validator/check/referer";
45 | $_vector_btns["valid_css"]["width"] = 80;
46 | $_vector_btns["valid_css"]["height"] = 15;
47 | $_vector_btns["valid_css"]["title"] = "Valid CSS";
48 | $_vector_btns["valid_css"]["nofollow"] = true;
49 |
50 |
51 | //some examples: remove comments to see what is happening
52 |
53 | /*
54 | //button using all attributes
55 | $_vector_btns["example1"]["img"] = DOKU_TPL."user/img/yourButtonHere.png";
56 | $_vector_btns["example1"]["href"] = "http://www.example.com";
57 | $_vector_btns["example1"]["width"] = 80;
58 | $_vector_btns["example1"]["height"] = 15;
59 | $_vector_btns["example1"]["title"] = "Example button";
60 | $_vector_btns["example1"]["nofollow"] = false;
61 | */
62 |
63 |
64 | /*
65 | //button using only mandatory attributes
66 | $_vector_btns["example2"]["img"] = DOKU_TPL."user/img/yourButtonHere.png";
67 | $_vector_btns["example2"]["href"] = "http://www.example.com";
68 | */
69 |
--------------------------------------------------------------------------------
/user/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/user/print.css.dist:
--------------------------------------------------------------------------------
1 | /*
2 | Place for user defined CSS rules (print media) - this file can safely be
3 | preserved when updating. See README for details.
4 |
5 | Note: All example files are delivered with the ".dist" extensions to make
6 | sure your changes do not get overwritten when updating the template.
7 | Just remove the ".dist" extension to use them.
8 | */
9 |
10 |
--------------------------------------------------------------------------------
/user/rtl.css.dist:
--------------------------------------------------------------------------------
1 | /*
2 | Place for user defined CSS rules (right to left languages, e.g. Hebrew) -
3 | this file can safely be preserved when updating. See README for details.
4 |
5 | Note: All example files are delivered with the ".dist" extensions to make
6 | sure your changes do not get overwritten when updating the template.
7 | Just remove the ".dist" extension to use them.
8 | */
9 |
10 |
--------------------------------------------------------------------------------
/user/screen.css.dist:
--------------------------------------------------------------------------------
1 | /*
2 | Place for user defined CSS rules (screen media) - this file can safely be
3 | preserved when updating. See README for details.
4 |
5 | Note: All example files are delivered with the ".dist" extensions to make
6 | sure your changes do not get overwritten when updating the template.
7 | Just remove the ".dist" extension to use them.
8 | */
9 |
10 |
--------------------------------------------------------------------------------
/user/tracker.php.dist:
--------------------------------------------------------------------------------
1 | "
15 | *
16 | * Note: All example files are delivered with the ".dist" extensions to make
17 | * sure your changes do not get overwritten when updating the template.
18 | * Just remove the ".dist" extension to use them.
19 | *
20 | *
21 | * LICENSE: This file is open source software (OSS) and may be copied under
22 | * certain conditions. See COPYING file for details or try to contact
23 | * the author(s) of this file in doubt.
24 | *
25 | * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
26 | * @author ARSAVA
27 | * @link http://piwik.org/
28 | * @link http://www.google.com/analytics/
29 | * @link https://www.dokuwiki.org/template:vector
30 | */
31 |
32 |
33 | //check if we are running within the DokuWiki environment
34 | if (!defined("DOKU_INC")){
35 | die();
36 | }
37 |
38 | //place the needed HTML source codes BELOW this line ?>
39 |
--------------------------------------------------------------------------------
/user/user.js.dist:
--------------------------------------------------------------------------------
1 | /*
2 | Place for user defined JavaScript - this file can safely be preserved
3 | when updating. See README for details.
4 |
5 | Note: All example files are delivered with the ".dist" extensions to make
6 | sure your changes do not get overwritten when updating the template.
7 | Just remove the ".dist" extension to use them.
8 |
9 | To use own JavaScript:
10 |
11 | 1. Create a /user/user.js file. You may just want to rename this file from
12 | "user.js.dist" to "user.js"
13 |
14 | 2. Do not forget to activate the template option
15 | "vector_loaduserjs" (->"Load 'vector/user/user.js'?") in the
16 | DokuWiki Config Manager! Otherwise, any changes to this file
17 | won't have any effect!
18 | */
19 |
--------------------------------------------------------------------------------