mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
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
This commit is contained in:
commit
d421187cb6
2 changed files with 5 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
<div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF -->" id="file-list-container">
|
<div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF -->" id="file-list-container">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<table class="table1 zebra-list">
|
<table class="table1 zebra-list fixed-width-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="attach-name">{L_PLUPLOAD_FILENAME}</th>
|
<th class="attach-name">{L_PLUPLOAD_FILENAME}</th>
|
||||||
|
|
|
@ -803,6 +803,10 @@ div.dl_links {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.fixed-width-table {
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
/* Show scrollbars for items with overflow on iOS devices
|
/* 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 {
|
.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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue