Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
martingabelmann committed Aug 1, 2020
0 parents commit be337d7
Show file tree
Hide file tree
Showing 26 changed files with 1,917 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
* text eol=lf

*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.xcf binary
340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DokuKITv2 Template for DokuWiki

All documentation for the Template is available online at:
https://github.com/particleKIT/dokuKITv2
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#DokuKITv2 Template
A dokuwiki template with the official KIT corporate (re)design.
73 changes: 73 additions & 0 deletions _admin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
#admin__version {
clear:left;
float: right;
color: __text_neu__;
}

div#wrapper ul.admin_tasks {
font-size: 115%;
float: left;
width: 40%;
list-style-type: none;
}

div#wrapper ul.admin_tasks li {
line-height: 22px;
padding-left: 35px;
margin: 1em 0;
background: transparent none no-repeat scroll 0 0;
text-align: left;
}

div#wrapper ul.admin_tasks li div.li {
font-weight: bold;
}

div#wrapper ul.admin_tasks li.admin_acl {
background-image: url(../../images/admin/acl.png);
}

div#wrapper ul.admin_tasks li.admin_usermanager {
background-image: url(../../images/admin/usermanager.png);
}

div#wrapper ul.admin_tasks li.admin_plugin {
background-image: url(../../images/admin/plugin.png);
}

div#wrapper ul.admin_tasks li.admin_config {
background-image: url(../../images/admin/config.png);
}

div#wrapper ul.admin_tasks li.admin_revert {
background-image: url(../../images/admin/revert.png);
}

div#wrapper ul.admin_tasks li.admin_popularity {
background-image: url(../../images/admin/popularity.png);
}

#config__manager tr .input,
#config__manager tr.default .input {
background-color: inherit;
display: inline;
}

#config__manager tr.default input,
#config__manager tr.default select {
background-color: #FFF;
border: 1px solid #B3B3B3;
margin: 1px;
}

#config__manager tr input,
#config__manager tr textarea,
#config__manager tr select {
background-color: #FFF;
border: 1px solid #B3B3B3;
margin: 1px;
}

#config__manager .selectiondefault {
background-color: transparent;
}
111 changes: 111 additions & 0 deletions _fileuploader.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@

.qq-uploader {
position: relative;
width: 100%;
}

.qq-uploader .error {
color: #f00;
background-color: #fff;
}

/* select file button */

.qq-upload-button {
display: inline-block;
border: 1px solid __border__;
color: __text__;
background: __background__ url(images/buttonshadow.png) repeat-x bottom;
text-decoration: none;
font-size: 100%;
cursor: pointer;
margin: 1px 1px 5px;
padding: 0.125em 0.4em;
}

* 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;
list-style: none;
}

.qq-uploader li {
margin-bottom: 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;
}
40 changes: 40 additions & 0 deletions _linkwiz.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#link__wiz {
}

#link__wiz_result {
background-color: __background__;
width: 293px;
height: 193px;
overflow: auto;
border: 1px solid __border__;
margin: 3px auto;
text-align: left;
}

#link__wiz_result div.type_u {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/up.png) 3px 3px no-repeat;
}

#link__wiz_result div.type_f {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/page.png) 3px 3px no-repeat;
}

#link__wiz_result div.type_d {
padding: 3px 3px 3px 22px;
background: transparent url(../../images/ns.png) 3px 3px no-repeat;
}

#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__;
}
Loading

0 comments on commit be337d7

Please sign in to comment.