diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 12:21:38 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 22:00:24 +0300 |
commit | c1ca57fcdb60ee772434e577de34107b2aa88cb1 (patch) | |
tree | d6864e4e16d6b7556193bb94c11eaea29e3b9e30 | |
parent | 49e30b12432966711e31a884feb8460dd3555d92 (diff) | |
download | forums-c1ca57fcdb60ee772434e577de34107b2aa88cb1.tar forums-c1ca57fcdb60ee772434e577de34107b2aa88cb1.tar.gz forums-c1ca57fcdb60ee772434e577de34107b2aa88cb1.tar.bz2 forums-c1ca57fcdb60ee772434e577de34107b2aa88cb1.tar.xz forums-c1ca57fcdb60ee772434e577de34107b2aa88cb1.zip |
[ticket/11957] Misc responsive changes
PHPBB3-11957
-rw-r--r-- | phpBB/adm/style/admin.css | 19 | ||||
-rw-r--r-- | phpBB/adm/style/admin.js | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index e225a6752c..a4fef1f4ec 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -788,6 +788,7 @@ table.styles td.users, table.styles td.actions, table.styles td.mark { table.responsive { background: transparent none; border-width: 0; + padding: 0; } table.responsive caption { @@ -1119,6 +1120,10 @@ select#full_folder_action { fieldset.quick, p.quick { text-align: center; } + + fieldset.display-options { + clear: both; + } } /* Definition list layout for forms @@ -1563,6 +1568,20 @@ li.pagination ul { border-color: #B4BAC0; } +@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) +{ + .pagination, .rtl .pagination { + float: none; + text-align: center; + margin: 5px 0; + } + + .pagination li a, .pagination li span { + display: inline-block; + min-width: 10px; + } +} + /* Action Highlighting ---------------------------------------- */ .successbox, .errorbox { diff --git a/phpBB/adm/style/admin.js b/phpBB/adm/style/admin.js index b466c02071..45cec5f716 100644 --- a/phpBB/adm/style/admin.js +++ b/phpBB/adm/style/admin.js @@ -115,7 +115,7 @@ function parse_document(container) return; } - if (text.length && text !== '-') { + if ((text.length && text !== '-') || cell.children().length) { cell.prepend('<dfn style="display: none;">' + headers[column] + '</dfn>'); } else { |