diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-06-22 20:38:22 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-22 20:38:22 +0200 |
commit | d421187cb60aeb7eddda2287702a8835ddc018c3 (patch) | |
tree | f5d591663fd4c6f45c6752bb3c0a8f884181377f | |
parent | 92a385dea660552ed57d55906fdd2df9e4aa1159 (diff) | |
parent | bd7fdb32cf29ac779e5861bb3746e9182f24d664 (diff) | |
download | forums-d421187cb60aeb7eddda2287702a8835ddc018c3.tar forums-d421187cb60aeb7eddda2287702a8835ddc018c3.tar.gz forums-d421187cb60aeb7eddda2287702a8835ddc018c3.tar.bz2 forums-d421187cb60aeb7eddda2287702a8835ddc018c3.tar.xz forums-d421187cb60aeb7eddda2287702a8835ddc018c3.zip |
Merge pull request #2638 from VSEphpbb/ticket/12332
[ticket/12332] Fix plupload attachments with long names
* VSEphpbb/ticket/12332:
[ticket/12332] Fix plupload attachments with long names overflow
-rw-r--r-- | phpBB/styles/prosilver/template/posting_attach_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html index 4ad66656b2..81b2c2bf41 100644 --- a/phpBB/styles/prosilver/template/posting_attach_body.html +++ b/phpBB/styles/prosilver/template/posting_attach_body.html @@ -23,7 +23,7 @@ <div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF -->" id="file-list-container"> <div class="inner"> - <table class="table1 zebra-list"> + <table class="table1 zebra-list fixed-width-table"> <thead> <tr> <th class="attach-name">{L_PLUPLOAD_FILENAME}</th> diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 7cc70b75d3..0a0e853db2 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -803,6 +803,10 @@ div.dl_links { white-space: nowrap; } +table.fixed-width-table { + table-layout: fixed; +} + /* Show scrollbars for items with overflow on iOS devices ----------------------------------------*/ .postbody .content::-webkit-scrollbar, #topicreview::-webkit-scrollbar, #post_details::-webkit-scrollbar, .codebox code::-webkit-scrollbar, .attachbox dd::-webkit-scrollbar, .attach-image::-webkit-scrollbar, .dropdown-extended ul::-webkit-scrollbar { |