diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-07-06 10:15:12 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-07-06 10:15:12 +0200 |
commit | 15f8c9026e596167a72c7d3abaf00621599a5713 (patch) | |
tree | 8708771963cda7ce868093502e7441b74e8ab053 /lib/tpl/dokuwiki/css | |
parent | 076f0d729bee262dd9e71303301fe09fe0910cdb (diff) | |
download | rpg-15f8c9026e596167a72c7d3abaf00621599a5713.tar.gz rpg-15f8c9026e596167a72c7d3abaf00621599a5713.tar.bz2 |
some link icon fixes FS#2548
Made sure all links align as well as possible in a list, giveing them
all the same padding.
Adjusted the template's icons to use 16x16 size and use the additional
space for alignment.
Adjusted some of the default interwiki icons (amazon, skype, paypal).
Diffstat (limited to 'lib/tpl/dokuwiki/css')
-rw-r--r-- | lib/tpl/dokuwiki/css/_links.css | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/tpl/dokuwiki/css/_links.css b/lib/tpl/dokuwiki/css/_links.css index 240e336bd..22502f6a9 100644 --- a/lib/tpl/dokuwiki/css/_links.css +++ b/lib/tpl/dokuwiki/css/_links.css @@ -39,22 +39,19 @@ .dokuwiki a.interwiki { background-repeat: no-repeat; background-position: 0 center; - padding: 0 0 0 20px; + padding: 0 0 0 18px; } /* external link */ .dokuwiki a.urlextern { background-image: url(images/external-link.png); - padding: 0 0 0 15px; } /* windows share */ .dokuwiki a.windows { background-image: url(images/unc.png); - padding: 0 0 0 16px; } /* email link */ .dokuwiki a.mail { background-image: url(images/email.png); - padding: 0 0 0 16px; } /* icons of the following are set by dokuwiki in lib/exe/css.php */ @@ -63,7 +60,6 @@ } /* interwiki link */ .dokuwiki a.interwiki { - padding: 0 0 0 17px; } /* RTL corrections; if link icons don't work as expected, remove the following lines */ @@ -73,5 +69,5 @@ [dir=rtl] .dokuwiki a.interwiki, [dir=rtl] .dokuwiki a.mediafile { background-position: right center; - padding: 0 17px 0 0; + padding: 0 18px 0 0; } |