diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-10 16:38:22 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-17 19:20:35 -0800 |
commit | 4361c1c9ac783a0004edebab83ca26a8899361df (patch) | |
tree | a68b8ea675a46c81694e9efd125b1f7ea4223544 /phpBB/styles/prosilver/theme/plupload.css | |
parent | aeb215a5c269ba7b6be540d06730b0ffce265c14 (diff) | |
download | forums-4361c1c9ac783a0004edebab83ca26a8899361df.tar forums-4361c1c9ac783a0004edebab83ca26a8899361df.tar.gz forums-4361c1c9ac783a0004edebab83ca26a8899361df.tar.bz2 forums-4361c1c9ac783a0004edebab83ca26a8899361df.tar.xz forums-4361c1c9ac783a0004edebab83ca26a8899361df.zip |
[ticket/11915] Move the uploaded attachment list under the attachments tab.
PHPBB3-11915
Diffstat (limited to 'phpBB/styles/prosilver/theme/plupload.css')
-rw-r--r-- | phpBB/styles/prosilver/theme/plupload.css | 75 |
1 files changed, 70 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/theme/plupload.css b/phpBB/styles/prosilver/theme/plupload.css index 16c26822b5..b296e61e74 100644 --- a/phpBB/styles/prosilver/theme/plupload.css +++ b/phpBB/styles/prosilver/theme/plupload.css @@ -1,11 +1,76 @@ -.plupload_filelist li.can_delete:hover { - cursor: pointer; +#attach-panel-multi { + display: none; + margin-bottom: 1em; } -.plupload_filelist li.can_delete:hover a { - background: url('../../../assets/plupload/jquery.plupload.queue/img/delete.gif'); +#file-list td { + vertical-align: middle; } -.plupload_filelist li a.working { +.attach-name { + width: 50%; +} + +.attach-comment { + width: 30%; +} + +.attach-filesize { + width: 15%; +} + +.attach-status { + width: 5%; +} + +.attach-filesize, .attach-status { + text-align: center; +} + +.attach-controls { + display: inline-block; + float: right; +} + +#attach-row-tpl { + display: none; +} + +#file-total-progress { + height: 2px; + display: block; + position: relative; + margin: 4px -10px -6px -10px; +} + +.file-progress { + background-color: #CCCCCC; + display:inline-block; + height: 8px; + width: 50px; +} + +.file-progress-bar, #file-total-progress-bar { + background-color: green; + display: block; + height: 100%; + width: 0; +} + +.file-status.file-working { background: url('../../../assets/plupload/jquery.plupload.queue/img/throbber.gif'); } + +.file-status.file-uploaded { + background: url('../../../assets/plupload/jquery.plupload.queue/img/done.gif'); +} + +.file-status.file-error { + background: url('../../../assets/plupload/jquery.plupload.queue/img/error.gif'); +} + +.file-status { + display: inline-block; + height: 16px; + width: 16px; +} |