Fixes long commit messages overflow viewport in file tree
This commit is contained in:
parent
c8e2d67483
commit
cf5a55429d
2 changed files with 7 additions and 1 deletions
|
@ -13,6 +13,7 @@ v 8.13.0 (unreleased)
|
||||||
- Use a ConnectionPool for Rails.cache on Sidekiq servers
|
- Use a ConnectionPool for Rails.cache on Sidekiq servers
|
||||||
- Only update issuable labels if they have been changed
|
- Only update issuable labels if they have been changed
|
||||||
- Revoke button in Applications Settings underlines on hover.
|
- 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)
|
- Update ruby-prof to 0.16.2. !6026 (Elan Ruusamäe)
|
||||||
- Add organization field to user profile
|
- Add organization field to user profile
|
||||||
- Fix resolved discussion display in side-by-side diff view !6575
|
- Fix resolved discussion display in side-by-side diff view !6575
|
||||||
|
|
|
@ -27,7 +27,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.last-commit {
|
.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 {
|
.commit-history-link-spacer {
|
||||||
|
|
Loading…
Reference in a new issue