Fixes long commit messages overflow viewport in file tree

This commit is contained in:
Filipa Lacerda 2016-09-28 15:50:02 +01:00 committed by Fatih Acet
parent c8e2d67483
commit cf5a55429d
2 changed files with 7 additions and 1 deletions

View File

@ -13,6 +13,7 @@ v 8.13.0 (unreleased)
- Use a ConnectionPool for Rails.cache on Sidekiq servers
- Only update issuable labels if they have been changed
- Revoke button in Applications Settings underlines on hover.
- Fix Long commit messages overflow viewport in file tree
- Update ruby-prof to 0.16.2. !6026 (Elan Ruusamäe)
- Add organization field to user profile
- Fix resolved discussion display in side-by-side diff view !6575

View File

@ -27,7 +27,12 @@
}
.last-commit {
@include str-truncated(60%);
@include str-truncated(506px);
@media (min-width: $screen-sm-max) and (max-width: $screen-md-max) {
@include str-truncated(450px);
}
}
.commit-history-link-spacer {