1/* ATTENTION: This file was edited for the "vector template for DokuWiki". 2 - All url() rules where changed. 3 See README for details. */ 4 5 6/** 7 * This file provides styles for all types of links. 8 */ 9 10/*____________ links to wiki pages ____________*/ 11 12/* existing wikipage */ 13.dokuwiki a.wikilink1 { 14 color: __existing__; 15 background-color: inherit; 16} 17/* not existing wikipage */ 18.dokuwiki a.wikilink2 { 19 color: __missing__; 20 background-color: inherit; 21 text-decoration: none; 22} 23.dokuwiki a.wikilink2:link, 24.dokuwiki a.wikilink2:visited { 25 border-bottom: 1px dashed; 26} 27.dokuwiki a.wikilink2:hover, 28.dokuwiki a.wikilink2:active, 29.dokuwiki a.wikilink2:focus { 30 border-bottom-width: 0; 31} 32 33/* any link to current page */ 34.dokuwiki span.curid a { 35 font-weight: bold; 36} 37 38/*____________ other link types ____________*/ 39 40.dokuwiki a.urlextern, 41.dokuwiki a.windows, 42.dokuwiki a.mail, 43.dokuwiki a.mediafile, 44.dokuwiki a.interwiki { 45 background-repeat: no-repeat; 46 background-position: 0 center; 47 padding: 0 0 0 17px; 48} 49/* external link */ 50.dokuwiki a.urlextern { 51 background-image: url(static/3rd/dokuwiki/link_icon.gif); 52} 53/* windows share */ 54.dokuwiki a.windows { 55 background-image: url(static/3rd/dokuwiki/windows.gif); 56} 57/* email link */ 58.dokuwiki a.mail { 59 background-image: url(static/3rd/dokuwiki/mail_icon.gif); 60} 61 62/* icons of the following are set by dokuwiki in lib/exe/css.php */ 63/* link to some embedded media */ 64.dokuwiki a.mediafile { 65} 66/* interwiki link */ 67.dokuwiki a.interwiki { 68} 69