diff options
author | Jochen Topf <jochen@topf.org> | 2015-03-14 11:19:21 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2015-03-14 11:19:21 +0100 |
commit | 09c7c596a1cdc045298018af14c2b1e4ea4d6702 (patch) | |
tree | eac337208646281fc5f4b7af6cbfacbc4aa68dd6 /web/public | |
parent | 5ee19155669c1248d5ea9a2613cbd2eb5e478b3d (diff) | |
download | taginfo-09c7c596a1cdc045298018af14c2b1e4ea4d6702.tar taginfo-09c7c596a1cdc045298018af14c2b1e4ea4d6702.tar.gz |
Add wiki images report.
Diffstat (limited to 'web/public')
-rw-r--r-- | web/public/css/taginfo.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/web/public/css/taginfo.css b/web/public/css/taginfo.css index bdce9b7..fd694e3 100644 --- a/web/public/css/taginfo.css +++ b/web/public/css/taginfo.css @@ -682,3 +682,49 @@ div#tagcloud a:hover { display: none; } +/* ========== */ + +table.wiki-images { + border-spacing: 4px; +} + +table.wiki-images td.key { + background-color: #ffffff; + padding: 0 10px; +} + +table.wiki-images td.images { + padding: 0; +} + +table.wiki-images td.images div.langimg { + position:relative; + width: 50px; + height: 50px; + float: left; + z-index: 0; + margin-right: 4px; +} + +table.wiki-images td.images div div { + position: absolute; + bottom: 0px; + width: 50px; + height: 12px; + text-align: center; + font-size: 80%; + line-height: 1; + z-index: 2; + background-color: #202020; + color: #ffffff; +} + +table.wiki-images td.images div img { + z-index: 1; + margin: 0 auto; + display: block; + max-width: 50px; + max-height: 50px; + top: 0; +} + |