1/** 2 * This file provides styles for all types of links. 3 */ 4 5/*____________ links to wiki pages ____________*/ 6 7/* existing wikipage */ 8.dokuwiki a.wikilink1 { 9} 10/* not existing wikipage */ 11.dokuwiki a.wikilink2 { 12 text-decoration: none; 13} 14.dokuwiki a.wikilink2:link, 15.dokuwiki a.wikilink2:visited { 16 border-bottom: 1px dashed; 17} 18.dokuwiki a.wikilink2:hover, 19.dokuwiki a.wikilink2:active, 20.dokuwiki a.wikilink2:focus { 21 border-bottom-width: 0; 22} 23 24/* any link to current page */ 25.dokuwiki span.curid a { 26 font-weight: bold; 27} 28 29/* override some link icons */ 30a.interwiki { 31 background-size: 1.0em; 32} 33 34a.iw_google_de { 35 background-image: url(/lib/images/interwiki/google.svg); 36} 37 38a.interwiki.iw_twitter { 39 background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHWSURBVDhPjVI9aFNRGD3nvgbS1kREB6E00RgKFkcRFQR/BhERHMTJ1tGppVsHZ5EqiJuDg/hsFt101w6CkrGg4GKJUKhYSc2LjaV57+u5L0+xxUoOnMf3ffee891370f0gdKzVtGMBwnLAVzOD9japjFAzpHlMNqrPcfE943JQpwq/kI5bI8ZbM7MzijNE3wL2mMZVUC8dInZUbFmwEx13gZ6sh7OvjFK+ES8qnS/OCyzi2Z4Adh5HX/UybGrhUFtursRR69Gw9a5cq0z5A2WltePSHDKxztAA7/JaJGHa+1iN06ewuC7eDRBftKOuo4Yyfh2Vt8Gkhe+TBZeuzi2kewUnd4S9sHspDpP7yYWNrS+6gNHh6aSquJBX+gTn9X0uw9c40ZhxYFTihd9oU8sBMx99YFLU8MHOdYVraf5/xER7tHSRN7/dmZAtPRdECNRL7orurq8By7gxyyXNENpvu2Q2AnJZ3UnV1QKeit/sKlTPieCW42bQz+zGlgKo4oRhzQxVYkvq/0l1TWy29BU54eku9+YGP79WikczK0xwbgG45rEx1VLxF/iilgncc85ng4Q3Nkp9kh/oRJ2GKNblPKACnpOfw30Jj9G8ntW313XWP0TwBYiI7IuEdRzyAAAAABJRU5ErkJggg==); 40} 41 42/*____________ other link types ____________*/ 43 44.dokuwiki a.urlextern, 45.dokuwiki a.windows, 46.dokuwiki a.mail, 47.dokuwiki a.mediafile, 48.dokuwiki a.interwiki { 49 background-repeat: no-repeat; 50 background-position: 0 center; 51 padding: 0 0 0 21px; 52} 53/* external link */ 54.dokuwiki a.urlextern { 55 background-image: url(../../images/external-link.png); 56} 57/* windows share */ 58.dokuwiki a.windows { 59 background-image: url(../../images/unc.png); 60} 61/* email link */ 62.dokuwiki a.mail { 63 background-image: url(../../images/email.png); 64} 65 66/* icons of the following are set by dokuwiki in lib/exe/css.php */ 67/* link to some embedded media */ 68.dokuwiki a.mediafile { 69} 70/* interwiki link */ 71.dokuwiki a.interwiki { 72} 73 74/* RTL corrections; if link icons don't work as expected, remove the following lines */ 75[dir=rtl] .dokuwiki a.urlextern, 76[dir=rtl] .dokuwiki a.windows, 77[dir=rtl] .dokuwiki a.mail, 78[dir=rtl] .dokuwiki a.interwiki, 79[dir=rtl] .dokuwiki a.mediafile { 80 background-position: right center; 81 padding: 0 18px 0 0; 82} 83