Merge pull request #320 from jedie/fix_small_screen2

CSS fix for small screen sizes, e.g. on mobile phones
This commit is contained in:
Jakob Borg 2014-06-02 13:51:03 +02:00
commit da42d51008

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>