diff options
author | Fyorl <gaelreth@gmail.com> | 2012-08-04 13:18:20 +0100 |
---|---|---|
committer | Fyorl <gaelreth@gmail.com> | 2012-08-04 13:18:20 +0100 |
commit | ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8 (patch) | |
tree | 205a0fd29c1c7919de88087e9bd5527b61e736d4 /phpBB/styles/prosilver/theme/content.css | |
parent | 5bffd9883de02807817838cd840a5293b6b908ac (diff) | |
download | forums-ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8.tar forums-ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8.tar.gz forums-ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8.tar.bz2 forums-ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8.tar.xz forums-ee7d9614c07c3961d62edbd0e8bf5ef1e2d75ff8.zip |
[feature/attach-dl] Downloading all attachments fully implemented
Added a function to list all available archiving methods and integrated
it with the prosilver style.
Heavy modifications to download/file.php to support archiving and
downloading of multiple files at once.
PHPBB3-11042
Diffstat (limited to 'phpBB/styles/prosilver/theme/content.css')
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 60903911dd..b6012f8a63 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -702,3 +702,26 @@ dl.pmlist dd { margin-left: 61% !important; margin-bottom: 2px; } + +.topic-actions div.dl_links { + padding: 10px 0 0 10px; +} + +div.dl_links { + display: inline-block; + text-transform: none; +} + +.dl_links strong { + font-weight: bold; +} + +.dl_links ul { + list-style-type: none; + margin: 0; + display: inline-block; +} + +.dl_links li { + display: inline-block; +} |