Browse Source

removed template dependencies from underscored CSS files

master
Anika Henke 12 years ago
parent
commit
a9f7358630
  1. 16
      css/_links.css
  2. 4
      css/_media_fullscreen.css
  3. 16
      css/_toc.css
  4. 18
      css/content.css
  5. 9
      style.ini

16
css/_links.css

@ -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,
@ -44,14 +40,26 @@
/* external link */
.dokuwiki a.urlextern {
background-image: url(images/external-link.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/external-link.png);
*/
}
/* windows share */
.dokuwiki a.windows {
background-image: url(images/unc.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/unc.png);
*/
}
/* email link */
.dokuwiki a.mail {
background-image: url(images/email.png);
/*
@deprecated, change since Adora Belle:
background-image: url(../../images/email.png);
*/
}
/* icons of the following are set by dokuwiki in lib/exe/css.php */

4
css/_media_fullscreen.css

@ -66,6 +66,10 @@
width: 6px;
right: 2px;
background: transparent url(images/resizecol.png) center center no-repeat;
/*
@deprecated, change since Adora Belle:
background: transparent url(../../images/resizecol.png) center center no-repeat;
*/
}
#mediamanager__page .ui-resizable-e:hover {
background-color: __background_alt__;

16
css/_toc.css

@ -100,13 +100,29 @@
}
.dokuwiki ul.idx li {
list-style-image: url(images/bullet.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/bullet.png);
*/
}
.dokuwiki ul.idx li.open {
list-style-image: url(images/open.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/open.png);
*/
}
.dokuwiki ul.idx li.closed {
list-style-image: url(images/closed.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/closed.png);
*/
}
[dir=rtl] .dokuwiki ul.idx li.closed {
list-style-image: url(images/closed-rtl.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/closed-rtl.png);
*/
}

18
css/content.css

@ -33,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 DokuWiki's lib/styles/all.css) */
@ -52,6 +66,10 @@
/*____________ tables ____________*/
/* div before each table */
.dokuwiki div.table {
}
.dokuwiki table.inline {
min-width: 50%;
}

9
style.ini

@ -3,8 +3,7 @@
; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently
; print, screen and rtl are supported. rtl styles are loaded additionally
; to screen styles if a right-to-left language is selected (eg. Hebrew).
; print, screen and all are supported.
[stylesheets]
@ -54,15 +53,15 @@ __background_neu__ = "#ddd"
; border color
__border__ = "#ccc"
; highlighted text (e.g. search snippets)
__highlight__ = "#ff9"
;--------------------------------------------------------------------------
; these are used for links
__existing__ = "#090"
__missing__ = "#f30"
; highlighting search snippets
__highlight__ = "#ff9"
; widths
__site_width__ = "64em"
__sidebar_width__ = "16em"
Loading…
Cancel
Save