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
0c4d4988
Commit
0c4d4988
authored
Feb 15, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
1582d0b3
a017fe6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
25 deletions
+35
-25
app/assets/javascripts/notes/components/noteable_discussion.vue
...sets/javascripts/notes/components/noteable_discussion.vue
+26
-24
app/assets/stylesheets/pages/notes.scss
app/assets/stylesheets/pages/notes.scss
+9
-1
No files found.
app/assets/javascripts/notes/components/noteable_discussion.vue
View file @
0c4d4988
...
...
@@ -373,30 +373,32 @@ Please check your network connection and try again.`;
:img-size=
"40"
/>
</div>
<note-header
:author=
"author"
:created-at=
"initialDiscussion.created_at"
:note-id=
"initialDiscussion.id"
:include-toggle=
"true"
:expanded=
"discussion.expanded"
@
toggleHandler=
"toggleDiscussionHandler"
>
<span
v-html=
"actionText"
></span>
</note-header>
<note-edited-text
v-if=
"discussion.resolved"
:edited-at=
"discussion.resolved_at"
:edited-by=
"discussion.resolved_by"
:action-text=
"resolvedText"
class-name=
"discussion-headline-light js-discussion-headline"
/>
<note-edited-text
v-else-if=
"lastUpdatedAt"
:edited-at=
"lastUpdatedAt"
:edited-by=
"lastUpdatedBy"
action-text=
"Last updated"
class-name=
"discussion-headline-light js-discussion-headline"
/>
<div
class=
"timeline-content"
>
<note-header
:author=
"author"
:created-at=
"initialDiscussion.created_at"
:note-id=
"initialDiscussion.id"
:include-toggle=
"true"
:expanded=
"discussion.expanded"
@
toggleHandler=
"toggleDiscussionHandler"
>
<span
v-html=
"actionText"
></span>
</note-header>
<note-edited-text
v-if=
"discussion.resolved"
:edited-at=
"discussion.resolved_at"
:edited-by=
"discussion.resolved_by"
:action-text=
"resolvedText"
class-name=
"discussion-headline-light js-discussion-headline"
/>
<note-edited-text
v-else-if=
"lastUpdatedAt"
:edited-at=
"lastUpdatedAt"
:edited-by=
"lastUpdatedBy"
action-text=
"Last updated"
class-name=
"discussion-headline-light js-discussion-headline"
/>
</div>
</div>
<div
v-if=
"shouldShowDiscussions"
class=
"discussion-body"
>
<component
...
...
app/assets/stylesheets/pages/notes.scss
View file @
0c4d4988
...
...
@@ -550,6 +550,11 @@ $note-form-margin-left: 72px;
.note-header-info
{
padding-bottom
:
0
;
}
.timeline-content
{
overflow-x
:
auto
;
overflow-y
:
hidden
;
}
}
.unresolved
{
...
...
@@ -597,7 +602,6 @@ $note-form-margin-left: 72px;
.note-headline-meta
{
display
:
inline-block
;
white-space
:
nowrap
;
.system-note-message
{
white-space
:
normal
;
...
...
@@ -607,6 +611,10 @@ $note-form-margin-left: 72px;
color
:
$gl-text-color-disabled
;
}
.note-timestamp
{
white-space
:
nowrap
;
}
a
:hover
{
text-decoration
:
underline
;
}
...
...
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