Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
cf5a5542
Commit
cf5a5542
authored
Sep 28, 2016
by
Filipa Lacerda
Committed by
Fatih Acet
Sep 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes long commit messages overflow viewport in file tree
parent
c8e2d674
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG
CHANGELOG
+1
-0
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+6
-1
No files found.
CHANGELOG
View file @
cf5a5542
...
...
@@ -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
...
...
app/assets/stylesheets/pages/tree.scss
View file @
cf5a5542
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment