diff options
author | Jochen Topf <jochen@topf.org> | 2012-01-19 22:58:38 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2012-01-19 22:58:38 +0100 |
commit | b3349b73fd39df805ac920e1f653c62ae541cbac (patch) | |
tree | 77a670cd6659f18a5d7d9c66b835a11f0bc28ad7 /web/public | |
parent | 07fd484bb5ec98837310062323f39614c8259a4a (diff) | |
download | taginfo-b3349b73fd39df805ac920e1f653c62ae541cbac.tar taginfo-b3349b73fd39df805ac920e1f653c62ae541cbac.tar.gz |
Update about page, external/wiki link design
Diffstat (limited to 'web/public')
-rw-r--r-- | web/public/css/taginfo.css | 11 | ||||
-rw-r--r-- | web/public/js/taginfo.js | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/web/public/css/taginfo.css b/web/public/css/taginfo.css index b151a44..8b8043c 100644 --- a/web/public/css/taginfo.css +++ b/web/public/css/taginfo.css @@ -11,6 +11,10 @@ img { border: 0 none; } +img.map { + border: 1px solid #b8b8b0; +} + img.icon_large { position: relative; top: 3px; @@ -68,11 +72,12 @@ span.empty { font-style: italic; } -a.wikilink { - color: #832719 !important; +a.wikilink:before { + content: "\2794"; } -a.extlink { +a.extlink:before { + content: "\2794"; } a.section { diff --git a/web/public/js/taginfo.js b/web/public/js/taginfo.js index cc1345b..a579438 100644 --- a/web/public/js/taginfo.js +++ b/web/public/js/taginfo.js @@ -90,7 +90,7 @@ function print_wiki_link(title, options) { path = 'wiki/' + title; } - return '<img src="/img/link-wiki.gif" alt="" width="14" height="10"/><a class="wikilink" href="http://wiki.openstreetmap.org/' + path + '" target="_blank">' + title + '</a>'; + return '<a class="wikilink" href="http://wiki.openstreetmap.org/' + path + '" target="_blank">' + title + '</a>'; } function print_language(code, native_name, english_name) { |