diff options
author | marklundeberg <nanite@gmail.com> | 2011-03-08 21:44:55 -0800 |
---|---|---|
committer | marklundeberg <nanite@gmail.com> | 2011-03-08 21:44:55 -0800 |
commit | 7b4ea0818922673113eb39a2062d802b38492186 (patch) | |
tree | 67344b9e8a73473f9c5b7bba8fbf315424fdd1a1 /lib/exe/css.php | |
parent | a424180e36bd8d0d4699597c9be6f9985d943911 (diff) | |
download | rpg-7b4ea0818922673113eb39a2062d802b38492186.tar.gz rpg-7b4ea0818922673113eb39a2062d802b38492186.tar.bz2 |
Make interwiki links match with every other icon-link: need 1px top and bottom padding or else the icons' top and bottom pixel rows get cut off.
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r-- | lib/exe/css.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index 98a34860e..03f900034 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -204,7 +204,7 @@ function css_interwiki(){ // default style echo 'a.interwiki {'; echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.png) 0px 1px no-repeat;'; - echo ' padding-left: 16px;'; + echo ' padding: 1px 0px 1px 16px;'; echo '}'; // additional styles when icon available |