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

4
css/_media_fullscreen.css

@ -66,6 +66,10 @@
width: 6px; width: 6px;
right: 2px; right: 2px;
background: transparent url(images/resizecol.png) center center no-repeat; 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 { #mediamanager__page .ui-resizable-e:hover {
background-color: __background_alt__; background-color: __background_alt__;

16
css/_toc.css

@ -100,13 +100,29 @@
} }
.dokuwiki ul.idx li { .dokuwiki ul.idx li {
list-style-image: url(images/bullet.png); list-style-image: url(images/bullet.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/bullet.png);
*/
} }
.dokuwiki ul.idx li.open { .dokuwiki ul.idx li.open {
list-style-image: url(images/open.png); list-style-image: url(images/open.png);
/*
@deprecated, change since Adora Belle:
list-style-image: url(../../images/open.png);
*/
} }
.dokuwiki ul.idx li.closed { .dokuwiki ul.idx li.closed {
list-style-image: url(images/closed.png); 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 { [dir=rtl] .dokuwiki ul.idx li.closed {
list-style-image: url(images/closed-rtl.png); 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 */ /* 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 ____________*/ /*____________ images ____________*/
/* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */ /* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */
@ -52,6 +66,10 @@
/*____________ tables ____________*/ /*____________ tables ____________*/
/* div before each table */
.dokuwiki div.table {
}
.dokuwiki table.inline { .dokuwiki table.inline {
min-width: 50%; min-width: 50%;
} }

9
style.ini

@ -3,8 +3,7 @@
; Define the stylesheets your template uses here. The second value ; Define the stylesheets your template uses here. The second value
; defines for which output media the style should be loaded. Currently ; 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] [stylesheets]
@ -54,15 +53,15 @@ __background_neu__ = "#ddd"
; border color ; border color
__border__ = "#ccc" __border__ = "#ccc"
; highlighted text (e.g. search snippets)
__highlight__ = "#ff9"
;-------------------------------------------------------------------------- ;--------------------------------------------------------------------------
; these are used for links ; these are used for links
__existing__ = "#090" __existing__ = "#090"
__missing__ = "#f30" __missing__ = "#f30"
; highlighting search snippets
__highlight__ = "#ff9"
; widths ; widths
__site_width__ = "64em" __site_width__ = "64em"
__sidebar_width__ = "16em" __sidebar_width__ = "16em"
Loading…
Cancel
Save