Fix nowrap on smartphone
This commit is contained in:
parent
8249179fb8
commit
cbc4a04465
@ -700,10 +700,17 @@ div.divsearchfield {
|
|||||||
.divsearchfieldfilter {
|
.divsearchfieldfilter {
|
||||||
text-overflow: clip;
|
text-overflow: clip;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
white-space: nowrap;
|
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
opacity: 0.6;
|
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 {
|
div.confirmmessage {
|
||||||
padding-top: 6px;
|
padding-top: 6px;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user