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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
3795ce73
Commit
3795ce73
authored
Nov 07, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed multi-file editor table cells content width jumping
parent
dc1e6b43
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
app/assets/javascripts/repo/components/repo_file.vue
app/assets/javascripts/repo/components/repo_file.vue
+4
-1
app/assets/javascripts/repo/components/repo_loading_file.vue
app/assets/javascripts/repo/components/repo_loading_file.vue
+1
-1
app/assets/javascripts/repo/components/repo_sidebar.vue
app/assets/javascripts/repo/components/repo_sidebar.vue
+1
-1
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+4
-0
No files found.
app/assets/javascripts/repo/components/repo_file.vue
View file @
3795ce73
...
...
@@ -54,7 +54,10 @@
<tr
class=
"file"
@
click.prevent=
"clickedTreeRow(file)"
>
<td
:colspan=
"submoduleColSpan"
>
<td
class=
"multi-file-table-col-name"
:colspan=
"submoduleColSpan"
>
<i
class=
"fa fa-fw file-icon"
:class=
"fileIcon"
...
...
app/assets/javascripts/repo/components/repo_loading_file.vue
View file @
3795ce73
...
...
@@ -19,7 +19,7 @@
class=
"loading-file"
aria-label=
"Loading files"
>
<td>
<td
class=
"multi-file-table-col-name"
>
<skeleton-loading-container
:small=
"true"
/>
...
...
app/assets/javascripts/repo/components/repo_sidebar.vue
View file @
3795ce73
...
...
@@ -57,7 +57,7 @@ export default {
</strong>
</th>
<template
v-else
>
<th
class=
"name"
>
<th
class=
"name
multi-file-table-col-name
"
>
Name
</th>
<th
class=
"hidden-sm hidden-xs last-commit"
>
...
...
app/assets/stylesheets/pages/repo.scss
View file @
3795ce73
...
...
@@ -298,3 +298,7 @@
width
:
100%
;
}
}
.multi-file-table-col-name
{
width
:
350px
;
}
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