removed template dependencies from underscored CSS files

This commit is contained in:
Anika Henke 2012-10-11 23:14:00 +01:00
parent ce9384593d
commit a9f7358630
5 changed files with 54 additions and 9 deletions

View file

@ -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 */

View file

@ -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__;

View file

@ -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);
*/
}

View file

@ -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%;
}