Skip to content

Commit

Permalink
Merge pull request syncthing#320 from jedie/fix_small_screen2
Browse files Browse the repository at this point in the history
CSS fix for small screen sizes, e.g. on mobile phones
  • Loading branch information
calmh committed Jun 2, 2014
2 parents 9112ba8 + 9902781 commit da42d51
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions gui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@
.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>

Expand Down

0 comments on commit da42d51

Please sign in to comment.