Commit 0ce5bd48 authored by Brian Campbell's avatar Brian Campbell

Show underscores in branch name in merge request

The branch name in the link to a branch on an unmerged merge request has
`overflow: hidden` set.  This means that setting the line-height setting
too small has the effect of truncating certain low descenders, like
underscore characters in certain fonts.

Removing the line height setting causes the text to move up slightly, no
longer lining up with the rest of the line, but we can fix that by
moving the margin bottom offset down a bit more to acommodate that.

Changelog: fixed
parent fa814c9e
......@@ -259,10 +259,9 @@ $tabs-holder-z-index: 250;
> span {
display: inline-block;
max-width: 12.5em;
margin-bottom: -3px;
margin-bottom: -6px;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 14px;
overflow: hidden;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment