BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d4384dc1
Commit
d4384dc1
authored
Jun 23, 2017
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'commit-comments-limited-width' into 'master'
Limit the width of commit & snippet comment sections Closes #20920 See merge request !12088
parents
473668b4
9fca7b43
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
8 deletions
+19
-8
issuable.scss
app/assets/stylesheets/pages/issuable.scss
+3
-1
show.html.haml
app/views/projects/commit/show.html.haml
+2
-1
show.html.haml
app/views/projects/snippets/show.html.haml
+2
-1
_header.html.haml
app/views/shared/snippets/_header.html.haml
+1
-1
show.html.haml
app/views/snippets/show.html.haml
+2
-1
commit-comments-limited-width.yml
changelogs/unreleased/commit-comments-limited-width.yml
+4
-0
show.html.haml_spec.rb
spec/views/projects/commit/show.html.haml_spec.rb
+5
-3
No files found.
app/assets/stylesheets/pages/issuable.scss
View file @
d4384dc1
...
...
@@ -11,7 +11,9 @@
.commit-box
,
.info-well
,
.commit-ci-menu
,
.files-changed
{
.files-changed
,
.limited-header-width
,
.limited-width-notes
{
@extend
.fixed-width-container
;
}
...
...
app/views/projects/commit/show.html.haml
View file @
d4384dc1
-
@no_container
=
true
-
container_class
=
!
fluid_layout
&&
diff_view
==
:inline
?
'container-limited'
:
''
-
limited_container_width
=
fluid_layout
||
diff_view
==
:inline
?
''
:
'limit-container-width'
-
limited_container_width
=
fluid_layout
?
''
:
'limit-container-width'
-
page_title
"
#{
@commit
.
title
}
(
#{
@commit
.
short_id
}
)"
,
"Commits"
-
page_description
@commit
.
description
=
render
"projects/commits/head"
...
...
@@ -13,6 +13,7 @@
.block-connector
=
render
"projects/diffs/diffs"
,
diffs:
@diffs
,
environment:
@environment
.limited-width-notes
=
render
"shared/notes/notes_with_form"
,
:autocomplete
=>
true
-
if
can_collaborate_with_project?
-
%w(revert cherry-pick)
.
each
do
|
type
|
...
...
app/views/projects/snippets/show.html.haml
View file @
d4384dc1
-
@content_class
=
"limit-container-width limited-inner-width-container"
unless
fluid_layout
-
page_title
"
#{
@snippet
.
title
}
(
#{
@snippet
.
to_reference
}
)"
,
"Snippets"
=
render
'shared/snippets/header'
...
...
@@ -9,4 +10,4 @@
.row-content-block.top-block.content-component-block
=
render
'award_emoji/awards_block'
,
awardable:
@snippet
,
inline:
true
#notes
=
render
"shared/notes/notes_with_form"
,
:autocomplete
=>
true
#notes
.limited-width-notes
=
render
"shared/notes/notes_with_form"
,
:autocomplete
=>
true
app/views/shared/snippets/_header.html.haml
View file @
d4384dc1
...
...
@@ -16,7 +16,7 @@
-
else
=
render
"snippets/actions"
.snippet-header
.snippet-header
.limited-header-width
%h2
.snippet-title.prepend-top-0.append-bottom-0
=
markdown_field
(
@snippet
,
:title
)
...
...
app/views/snippets/show.html.haml
View file @
d4384dc1
-
@content_class
=
"limit-container-width limited-inner-width-container"
unless
fluid_layout
-
page_title
"
#{
@snippet
.
title
}
(
#{
@snippet
.
to_reference
}
)"
,
"Snippets"
=
render
'shared/snippets/header'
...
...
@@ -9,4 +10,4 @@
.row-content-block.top-block.content-component-block
=
render
'award_emoji/awards_block'
,
awardable:
@snippet
,
inline:
true
#notes
=
render
"shared/notes/notes_with_form"
,
:autocomplete
=>
false
#notes
.limited-width-notes
=
render
"shared/notes/notes_with_form"
,
:autocomplete
=>
false
changelogs/unreleased/commit-comments-limited-width.yml
0 → 100644
View file @
d4384dc1
---
title
:
Limit commit & snippets comments width
merge_request
:
author
:
spec/views/projects/commit/show.html.haml_spec.rb
View file @
d4384dc1
...
...
@@ -21,24 +21,26 @@ describe 'projects/commit/show.html.haml', :view do
context
'inline diff view'
do
before
do
allow
(
view
).
to
receive
(
:diff_view
).
and_return
(
:inline
)
allow
(
view
).
to
receive
(
:diff_view
).
and_return
(
:inline
)
render
end
it
'
keeps container-limited
'
do
expect
(
rendered
).
not_
to
have_selector
(
'.limit-container-width'
)
it
'
has limited width
'
do
expect
(
rendered
).
to
have_selector
(
'.limit-container-width'
)
end
end
context
'parallel diff view'
do
before
do
allow
(
view
).
to
receive
(
:diff_view
).
and_return
(
:parallel
)
allow
(
view
).
to
receive
(
:fluid_layout
).
and_return
(
true
)
render
end
it
'spans full width'
do
expect
(
rendered
).
to
have_selector
(
'.limit-container-width'
)
expect
(
rendered
).
not_
to
have_selector
(
'.limit-container-width'
)
end
end
end
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