aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-04-25 11:26:49 -0700
committerMatt Friedman <maf675@gmail.com>2014-04-25 11:26:49 -0700
commit770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5 (patch)
tree89f7b2a73ce8605d9bdaeef90010a0346176e537 /phpBB/adm
parentfe768d460d54d68aeecc392a75a1438b3f3bad34 (diff)
downloadforums-770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5.tar
forums-770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5.tar.gz
forums-770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5.tar.bz2
forums-770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5.tar.xz
forums-770ab13cb082b8f7102b9205e1aa5e1bad0a6cc5.zip
[ticket/12332] Fix displaying attachments with long file names
PHPBB3-12332
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/acp_logs.html10
-rw-r--r--phpBB/adm/style/admin.css5
2 files changed, 10 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_logs.html b/phpBB/adm/style/acp_logs.html
index 9343b9b509..b3b5fe3394 100644
--- a/phpBB/adm/style/acp_logs.html
+++ b/phpBB/adm/style/acp_logs.html
@@ -22,15 +22,15 @@
<div><br style="clear: both;" /></div>
<!-- IF .log -->
- <table class="table1 zebra-table">
+ <table class="table1 zebra-table fixed-width-table">
<thead>
<tr>
- <th>{L_USERNAME}</th>
- <th>{L_IP}</th>
- <th>{L_TIME}</th>
+ <th style="width: 15%;">{L_USERNAME}</th>
+ <th style="width: 15%;">{L_IP}</th>
+ <th style="width: 20%;">{L_TIME}</th>
<th>{L_ACTION}</th>
<!-- IF S_CLEARLOGS -->
- <th>{L_MARK}</th>
+ <th style="width: 10%;">{L_MARK}</th>
<!-- ENDIF -->
</tr>
</thead>
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css
index 6f2d65afc0..7f15c162a5 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -911,6 +911,11 @@ table.styles td.users, table td.mark {
text-align: center;
}
+table.fixed-width-table {
+ table-layout: fixed;
+ width: 100%;
+}
+
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
{
table.responsive, table.responsive tbody, table.responsive tr, table.responsive td {