Skip to content

Commit 92cfbc1

Browse files
committed
Added text overflow to methods (fixes #3).
1 parent df3fcce commit 92cfbc1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

templates/bootstrap.hbs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
.menu li a {
3535
display: block;
3636
padding: .25em;
37+
overflow: hidden;
38+
text-overflow: ellipsis;
3739
}
3840
3941
.menu li ul {
@@ -130,7 +132,7 @@ pre .hljs {
130132
{{#if ctx}}
131133

132134
<li class="scope-{{#if isPrivate}}private{{else}}public{{/if}}">
133-
<a href="#{{ctx.uid}}">{{formatName ctx.string}}</a>
135+
<a href="#{{ctx.uid}}" title="{{formatName ctx.string}}">{{formatName ctx.string}}</a>
134136
</li>
135137

136138
{{/if}}

0 commit comments

Comments
 (0)