diff options
author | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-05-05 01:45:33 +0000 |
---|---|---|
committer | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-05-05 01:45:33 +0000 |
commit | 19b90167e1a5759e010db48760f6874d06aaf984 (patch) | |
tree | 3caa98c31ac8bffb088f872d059c4062b680ee47 /skins | |
parent | 171edcdffca2213644d1a2998af72583f3388717 (diff) | |
download | mediawikicore-19b90167e1a5759e010db48760f6874d06aaf984.tar.gz mediawikicore-19b90167e1a5759e010db48760f6874d06aaf984.zip |
* The toggle class moved out of the metadata section
* exif renamed to metadata
* Added CSS to style the filetoc
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/8886
Diffstat (limited to 'skins')
-rw-r--r-- | skins/monobook/main.css | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 788368f952d3..dfe51f97c63d 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1085,41 +1085,55 @@ li span.deleted { font-style: italic; } +.toggle { + margin-left: 2em; + text-indent: -2em; +} + /* Classes for EXIF data display */ -table.exif { +table.metadata { margin-left: 0.5em; } -table.exif caption { font-weight: bold; } -table.exif th { font-weight: normal; } -table.exif td { padding: 0.1em; } +table.metadata caption { font-weight: bold; } +table.metadata th { font-weight: normal; } +table.metadata td { padding: 0.1em; } -table.exif { +table.metadata { border: none; border-collapse: collapse; } -table.exif td, table.exif th { +table.metadata td, table.metadata th { border: 1px solid #aaaaaa; padding-left: 4px; padding-right: 4px; } -table.exif th { +table.metadata th { background-color: #f9f9f9; } -table.exif td { +table.metadata td { background-color: #fcfcfc; } -table.exif td.spacer { +table.metadata td.spacer { background: white; border-top: none; border-bottom: none; } -.toggle { - margin-left: 2em; - text-indent: -2em; +/* filetoc */ +ul#filetoc { + text-align: center; + border: 1px solid #aaaaaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; + margin-bottom: 0.5em; + margin-left: 0; + margin-right: 0; } -div.imagepagetoc table.toc { - margin-bottom: 1em; +#filetoc li { + display: inline; + list-style-type: none; + padding-right: 2em; } |