Skip to content

Commit

Permalink
removed template dependencies from underscored CSS files in new defau…
Browse files Browse the repository at this point in the history
…lt template
  • Loading branch information
selfthinker committed Oct 10, 2012
1 parent 650d96f commit 5db35f6
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 16 deletions.
@@ -1,4 +1,5 @@
Icons for: sitetools.png, email.png, external-link.png and unc.png

Icons: email.png, external-link.png, unc.png
Icon set: Dusseldorf
Designer: pc.de
License: Creative Commons Attribution License [http://creativecommons.org/licenses/by/3.0/]
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
10 changes: 3 additions & 7 deletions lib/tpl/dokuwiki/css/_links.css
Expand Up @@ -6,13 +6,9 @@

/* existing wikipage */
.dokuwiki a.wikilink1 {
color: __existing__;
background-color: inherit;
}
/* not existing wikipage */
.dokuwiki a.wikilink2 {
color: __missing__;
background-color: inherit;
text-decoration: none;
}
.dokuwiki a.wikilink2:link,
Expand Down Expand Up @@ -43,15 +39,15 @@
}
/* external link */
.dokuwiki a.urlextern {
background-image: url(images/external-link.png);
background-image: url(../../images/external-link.png);
}
/* windows share */
.dokuwiki a.windows {
background-image: url(images/unc.png);
background-image: url(../../images/unc.png);
}
/* email link */
.dokuwiki a.mail {
background-image: url(images/email.png);
background-image: url(../../images/email.png);
}

/* icons of the following are set by dokuwiki in lib/exe/css.php */
Expand Down
8 changes: 4 additions & 4 deletions lib/tpl/dokuwiki/css/_toc.css
Expand Up @@ -80,14 +80,14 @@
padding-right: 0;
}
.dokuwiki ul.idx li {
list-style-image: url(images/bullet.png);
list-style-image: url(../../images/bullet.png);
}
.dokuwiki ul.idx li.open {
list-style-image: url(images/open.png);
list-style-image: url(../../images/open.png);
}
.dokuwiki ul.idx li.closed {
list-style-image: url(images/closed.png);
list-style-image: url(../../images/closed.png);
}
[dir=rtl] .dokuwiki ul.idx li.closed {
list-style-image: url(images/closed-rtl.png);
list-style-image: url(../../images/closed-rtl.png);
}
15 changes: 14 additions & 1 deletion lib/tpl/dokuwiki/css/content.css
Expand Up @@ -6,7 +6,6 @@
* @author Clarence Lee <clarencedglee@gmail.com>
*/


/*____________ section indenting ____________
.dokuwiki.page h1 {margin-left: 0;}
Expand Down Expand Up @@ -34,6 +33,20 @@
/* hx margin-left = (1 / font-size) * .levelx-margin */


/*____________ links to wiki pages (addition to _links) ____________*/

/* existing wikipage */
.dokuwiki a.wikilink1 {
color: __existing__;
background-color: inherit;
}
/* not existing wikipage */
.dokuwiki a.wikilink2 {
color: __missing__;
background-color: inherit;
}


/*____________ images ____________*/

/* embedded images (styles are already partly set in lib/styles/all.css) */
Expand Down
5 changes: 5 additions & 0 deletions lib/tpl/dokuwiki/images/license.txt
@@ -0,0 +1,5 @@
Icons for: sitetools.png
Icon set: Dusseldorf
Designer: pc.de
License: Creative Commons Attribution License [http://creativecommons.org/licenses/by/3.0/]
URL: http://pc.de/icons/#Dusseldorf
6 changes: 3 additions & 3 deletions lib/tpl/dokuwiki/style.ini
Expand Up @@ -54,6 +54,9 @@ __background_neu__ = "#ddd"
; border color
__border__ = "#ccc"

; highlighted text (e.g. search snippets)
__highlight__ = "#ff9"

;--------------------------------------------------------------------------

__background_site__ = "#fbfaf9"
Expand All @@ -63,9 +66,6 @@ __link__ = "#2b73b7"
__existing__ = "#080"
__missing__ = "#d30"

; highlighting search snippets
__highlight__ = "#ff9"

; site and sidebar widths
__site_width__ = "75em"
__sidebar_width__ = "16em"

0 comments on commit 5db35f6

Please sign in to comment.