diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2005-04-30 02:37:16 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2005-04-30 02:37:16 +0000 |
commit | e4b96bc7ec049b73aa712eb89e45adcddfa37c33 (patch) | |
tree | 04b7c94b1611e39f7bf75758965d908e03768f61 /skins/monobook | |
parent | 307371410105564c483ca0bd15c2a07f4356cb6c (diff) | |
download | mediawikicore-e4b96bc7ec049b73aa712eb89e45adcddfa37c33.tar.gz mediawikicore-e4b96bc7ec049b73aa712eb89e45adcddfa37c33.zip |
Mix back some of the changes from previous check-in with additional fixes
and a cleaner version of the table.
* Clean up EXIF display table:
- use localized description of items
- don't forget to HTML-encode the localized messages!
- clean up the style a bit on the middle spacer
- distinguish the header and data columns a little better
* Don't show 'edit this image' link if no file exists
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/8752
Diffstat (limited to 'skins/monobook')
-rw-r--r-- | skins/monobook/main.css | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 0dbb0bda574e..aa936bcf6e4a 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1111,7 +1111,6 @@ li span.deleted { /* Classes for EXIF data display */ table.exif { - background-color: #f9f9f9; margin-left: 0.5em; } @@ -1119,10 +1118,24 @@ table.exif caption { font-weight: bold; } table.exif th { font-weight: normal; } table.exif td { padding: 0.1em; } -table.exif, table.exif td, table.exif th { - border: 1px solid #aaaaaa; +table.exif { + border: none; border-collapse: collapse; } +table.exif td, table.exif th { + border: 1px solid #aaaaaa; +} +table.exif th { + background-color: #f9f9f9; +} +table.exif td { + background-color: #fcfcfc; +} +table.exif td.spacer { + background: white; + border-top: none; + border-bottom: none; +} .toggle { margin-left: 2em; |