diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:25:59 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:25:59 -0700 |
commit | 76843f4a3a7d30502bbc50a74f112d45c8a9e0a7 (patch) | |
tree | 2c90343e4ebdf7df29d1407dfdb0ca50cbfb7d90 /phpBB | |
parent | 92fa39b79d45f024985a47431b9fbc071d1eebbc (diff) | |
download | forums-76843f4a3a7d30502bbc50a74f112d45c8a9e0a7.tar forums-76843f4a3a7d30502bbc50a74f112d45c8a9e0a7.tar.gz forums-76843f4a3a7d30502bbc50a74f112d45c8a9e0a7.tar.bz2 forums-76843f4a3a7d30502bbc50a74f112d45c8a9e0a7.tar.xz forums-76843f4a3a7d30502bbc50a74f112d45c8a9e0a7.zip |
[ticket/12332] Adjust column widths for responsive changes
PHPBB3-12332
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/acp_attachments.html | 6 | ||||
-rw-r--r-- | phpBB/adm/style/acp_users.html | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_attachments.html b/phpBB/adm/style/acp_attachments.html index fd071588e6..61a81ff7d7 100644 --- a/phpBB/adm/style/acp_attachments.html +++ b/phpBB/adm/style/acp_attachments.html @@ -334,10 +334,10 @@ <table class="table1 zebra-table fixed-width-table"> <thead> <tr> - <th style="width: 25%;">{L_FILENAME}</th> + <th>{L_FILENAME}</th> <th style="width: 15%;">{L_FILEDATE}</th> <th style="width: 15%;">{L_FILESIZE}</th> - <th style="width: 150px;">{L_ATTACH_POST_ID}</th> + <th style="width: 15%">{L_ATTACH_POST_ID}</th> <th style="width: 15%;">{L_ATTACH_TO_POST}</th> <th style="width: 15%;">{L_DELETE}</th> </tr> @@ -348,7 +348,7 @@ <td><a href="{orphan.U_FILE}">{orphan.REAL_FILENAME}</a></td> <td>{orphan.FILETIME}</td> <td>{orphan.FILESIZE}</td> - <td><strong>{L_ATTACH_ID}{L_COLON} </strong><input type="number" name="post_id[{orphan.ATTACH_ID}]" size="7" maxlength="10" value="{orphan.POST_ID}" /></td> + <td><strong>{L_ATTACH_ID}{L_COLON} </strong><input type="number" name="post_id[{orphan.ATTACH_ID}]" maxlength="10" value="{orphan.POST_ID}" style="width: 75%;" /></td> <td><input type="checkbox" class="radio" name="add[{orphan.ATTACH_ID}]" /></td> <td><input type="checkbox" class="radio" name="delete[{orphan.ATTACH_ID}]" /></td> </tr> diff --git a/phpBB/adm/style/acp_users.html b/phpBB/adm/style/acp_users.html index d1be177cfa..0522d17c37 100644 --- a/phpBB/adm/style/acp_users.html +++ b/phpBB/adm/style/acp_users.html @@ -168,9 +168,9 @@ <thead> <tr> <th>{L_FILENAME}</th> - <th style="width: 15%;">{L_POST_TIME}</th> + <th style="width: 20%;">{L_POST_TIME}</th> <th style="width: 15%;">{L_FILESIZE}</th> - <th style="width: 15%;">{L_DOWNLOADS}</th> + <th style="width: 20%;">{L_DOWNLOADS}</th> <th style="width: 10%;">{L_MARK}</th> </tr> </thead> |