aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-06-22 10:58:00 -0700
committerMatt Friedman <maf675@gmail.com>2014-06-22 10:58:00 -0700
commitbd7fdb32cf29ac779e5861bb3746e9182f24d664 (patch)
treed21307411e6489d8620b4f6134d9d7fd7dc732db
parent566615fa318e407cafd028593faba208fa2b4e25 (diff)
downloadforums-bd7fdb32cf29ac779e5861bb3746e9182f24d664.tar
forums-bd7fdb32cf29ac779e5861bb3746e9182f24d664.tar.gz
forums-bd7fdb32cf29ac779e5861bb3746e9182f24d664.tar.bz2
forums-bd7fdb32cf29ac779e5861bb3746e9182f24d664.tar.xz
forums-bd7fdb32cf29ac779e5861bb3746e9182f24d664.zip
[ticket/12332] Fix plupload attachments with long names overflow
PHPBB3-12332
-rw-r--r--phpBB/styles/prosilver/template/posting_attach_body.html2
-rw-r--r--phpBB/styles/prosilver/theme/content.css4
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 {