Merge pull request #20 from ffnord/feature-shorten-node-names

Abbreviate first column of sidebar table
This commit is contained in:
Nils Schneider 2016-01-13 11:19:40 +01:00
commit a1d341536e

View file

@ -236,6 +236,14 @@ table {
font-weight: bold; font-weight: bold;
} }
.sidebar table th:first-child,
.sidebar table td:first-child {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 60%;
}
.sidebarhandle { .sidebarhandle {
position: fixed; position: fixed;
left: $sidebarwidth + 2 * $buttondistance; left: $sidebarwidth + 2 * $buttondistance;
@ -283,6 +291,7 @@ table {
.sidebar table { .sidebar table {
width: 100%; width: 100%;
table-layout: fixed;
} }
.sidebar table th { .sidebar table th {