CSS fix for small screen sizes, e.g. on mobile phones

This commit is contained in:
JensDiemer 2014-06-02 10:18:45 +02:00
parent 9112ba8f0b
commit 99027813ef

View File

@ -72,6 +72,15 @@ found in the LICENSE file.
.table td {
padding-left: 20px !important;
}
@media (max-width:767px){
.table-responsive>.table>tbody>tr>td{
/* revert a bootstrap setting e.g.:
* for mobile phones to allow linebreaks in long repro folder/shared with
* columns. */
white-space:normal;
}
}
</style>
</head>