Skip to content

Commit

Permalink
Fix nowrap on smartphone
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 17, 2018
1 parent 8249179 commit cbc4a04
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion htdocs/theme/eldy/style.css.php
Expand Up @@ -700,10 +700,17 @@
.divsearchfieldfilter {
text-overflow: clip;
overflow: auto;
white-space: nowrap;
padding-bottom: 5px;
opacity: 0.6;
}
<?php
// Add a nowrap on smartphone, so long list of field used for filter are overflowed with clip
if ($conf->browser->layout == 'phone') {
?>
.divsearchfieldfilter {
white-space: nowrap;
}
<?php } ?>
div.confirmmessage {
padding-top: 6px;
}
Expand Down

0 comments on commit cbc4a04

Please sign in to comment.