mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/11957] Misc responsive changes
PHPBB3-11957
This commit is contained in:
parent
49e30b1243
commit
c1ca57fcdb
2 changed files with 20 additions and 1 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue