-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit be337d7
Showing
26 changed files
with
1,917 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__; | ||
} |
Oops, something went wrong.