[ticket/11957] Misc responsive changes

PHPBB3-11957
This commit is contained in:
Vjacheslav Trushkin 2013-10-26 12:21:38 +03:00
parent 49e30b1243
commit c1ca57fcdb
2 changed files with 20 additions and 1 deletions

View file

@ -788,6 +788,7 @@ table.styles td.users, table.styles td.actions, table.styles td.mark {
table.responsive { table.responsive {
background: transparent none; background: transparent none;
border-width: 0; border-width: 0;
padding: 0;
} }
table.responsive caption { table.responsive caption {
@ -1119,6 +1120,10 @@ select#full_folder_action {
fieldset.quick, p.quick { fieldset.quick, p.quick {
text-align: center; text-align: center;
} }
fieldset.display-options {
clear: both;
}
} }
/* Definition list layout for forms /* Definition list layout for forms
@ -1563,6 +1568,20 @@ li.pagination ul {
border-color: #B4BAC0; 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 /* Action Highlighting
---------------------------------------- */ ---------------------------------------- */
.successbox, .errorbox { .successbox, .errorbox {

View file

@ -115,7 +115,7 @@ function parse_document(container)
return; return;
} }
if (text.length && text !== '-') { if ((text.length && text !== '-') || cell.children().length) {
cell.prepend('<dfn style="display: none;">' + headers[column] + '</dfn>'); cell.prepend('<dfn style="display: none;">' + headers[column] + '</dfn>');
} }
else { else {