removed template dependencies from underscored CSS files
This commit is contained in:
parent
ce9384593d
commit
a9f7358630
5 changed files with 54 additions and 9 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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
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);
|
||||
*/
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue