Skip to content

Commit

Permalink
inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Klier committed Jan 14, 2010
0 parents commit 5818559
Show file tree
Hide file tree
Showing 50 changed files with 2,729 additions and 0 deletions.
340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

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

All documentation for the Sandy Template is available online at:
http://dokuwiki.org/template:sandy

(c) 2006 - 2009 neolao <neo@neolao.com>
(c) 2010 by Michael Klier <chi@chimeric.de>
See COPYING for license info.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2010-01-14
43 changes: 43 additions & 0 deletions _admin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

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

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

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

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

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

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

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

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

.dokuwiki ul.admin_tasks li.admin_popularity {
background-image: url(../../images/admin/popularity.png);
}
68 changes: 68 additions & 0 deletions _linkwiz.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
#link__wiz {
position: absolute;
display: block;
z-index: 99;
width: 300px;
height: 250px;
padding: 0;
margin: 0;
overflow: hidden;
border: 1px solid __border__;
background-color: __background_neu__;
text-align: center;
}

#link__wiz_header {
background-color: __background_alt__;
height: 16px;
margin-bottom: 5px;
}

#link__wiz_close {
cursor: pointer;
margin: 0;
}

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

/*FIXME maybe move to a more general style sheet*/
.ondrag {
cursor: move;
opacity: 0.8;
}
Loading

0 comments on commit 5818559

Please sign in to comment.