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
f5b59dcf
Commit
f5b59dcf
authored
Feb 22, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grow the button on hover
parent
cc41ec97
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
app/assets/javascripts/files_comment_button.js
app/assets/javascripts/files_comment_button.js
+12
-14
app/assets/stylesheets/pages/notes.scss
app/assets/stylesheets/pages/notes.scss
+3
-1
No files found.
app/assets/javascripts/files_comment_button.js
View file @
f5b59dcf
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, max-len, one-var, one-var-declaration-per-line, quotes, prefer-template, newline-per-chained-call, comma-dangle, new-cap, no-else-return, consistent-return */
/* global FilesCommentButton */
/* global notes */
(
function
()
{
var
$commentButtonTemplate
;
let
$commentButtonTemplate
;
var
bind
=
function
(
fn
,
me
)
{
return
function
()
{
return
fn
.
apply
(
me
,
arguments
);
};
};
this
.
FilesCommentButton
=
(
function
()
{
...
...
@@ -27,27 +28,24 @@
TEXT_FILE_SELECTOR
=
'
.text-file
'
;
function
FilesCommentButton
(
filesContainerElement
)
{
this
.
filesContainerElement
=
filesContainerElement
;
this
.
render
=
bind
(
this
.
render
,
this
);
this
.
hideButton
=
bind
(
this
.
hideButton
,
this
);
this
.
VIEW_TYPE
=
$
(
'
input#view[type=hidden]
'
).
val
();
$
(
this
.
filesContainerElement
)
.
on
(
'
mouseover
'
,
LINE_COLUMN_CLASSES
,
this
.
render
)
this
.
isParallelView
=
notes
.
isParallelView
();
filesContainerElement
.
on
(
'
mouseover
'
,
LINE_COLUMN_CLASSES
,
this
.
render
)
.
on
(
'
mouseleave
'
,
LINE_COLUMN_CLASSES
,
this
.
hideButton
);
}
FilesCommentButton
.
prototype
.
render
=
function
(
e
)
{
var
$currentTarget
,
buttonParentElement
,
lineContentElement
,
textFileElement
,
$button
;
$currentTarget
=
$
(
e
.
currentTarget
);
buttonParentElement
=
this
.
getButtonParent
(
$currentTarget
);
if
(
!
this
.
validateButtonParent
(
buttonParentElement
))
return
;
lineContentElement
=
this
.
getLineContent
(
$currentTarget
);
if
(
!
this
.
validateLineContent
(
lineContentElement
))
return
;
buttonParentElement
=
this
.
getButtonParent
(
$currentTarget
);
if
(
!
this
.
validateButtonParent
(
buttonParentElement
)
||
!
this
.
validateLineContent
(
lineContentElement
))
return
;
$button
=
$
(
COMMENT_BUTTON_CLASS
,
buttonParentElement
);
buttonParentElement
.
addClass
(
'
is-over
'
)
.
nextUntil
(
'
.line_content
'
).
addClass
(
'
is-over
'
);
.
nextUntil
(
`.
${
LINE_CONTENT_CLASS
}
`
).
addClass
(
'
is-over
'
);
if
(
$button
.
length
)
{
return
;
...
...
@@ -71,7 +69,7 @@
var
buttonParentElement
=
this
.
getButtonParent
(
$currentTarget
);
buttonParentElement
.
removeClass
(
'
is-over
'
)
.
nextUntil
(
'
.line_content
'
).
removeClass
(
'
is-over
'
);
.
nextUntil
(
`.
${
LINE_CONTENT_CLASS
}
`
).
removeClass
(
'
is-over
'
);
};
FilesCommentButton
.
prototype
.
buildButton
=
function
(
buttonAttributes
)
{
...
...
@@ -88,14 +86,14 @@
};
FilesCommentButton
.
prototype
.
getTextFileElement
=
function
(
hoveredElement
)
{
return
$
(
hoveredElement
.
closest
(
TEXT_FILE_SELECTOR
)
);
return
hoveredElement
.
closest
(
TEXT_FILE_SELECTOR
);
};
FilesCommentButton
.
prototype
.
getLineContent
=
function
(
hoveredElement
)
{
if
(
hoveredElement
.
hasClass
(
LINE_CONTENT_CLASS
))
{
return
hoveredElement
;
}
if
(
this
.
VIEW_TYPE
===
'
inline
'
)
{
if
(
!
this
.
isParallelView
)
{
return
$
(
hoveredElement
).
closest
(
LINE_HOLDER_CLASS
).
find
(
"
.
"
+
LINE_CONTENT_CLASS
);
}
else
{
return
$
(
hoveredElement
).
next
(
"
.
"
+
LINE_CONTENT_CLASS
);
...
...
@@ -103,7 +101,7 @@
};
FilesCommentButton
.
prototype
.
getButtonParent
=
function
(
hoveredElement
)
{
if
(
this
.
VIEW_TYPE
===
'
inline
'
)
{
if
(
!
this
.
isParallelView
)
{
if
(
hoveredElement
.
hasClass
(
OLD_LINE_CLASS
))
{
return
hoveredElement
;
}
...
...
app/assets/stylesheets/pages/notes.scss
View file @
f5b59dcf
...
...
@@ -457,7 +457,7 @@ ul.notes {
margin-top
:
-2px
;
border-radius
:
50%
;
background
:
$white-light
;
padding
:
2
px
5px
;
padding
:
1
px
5px
;
font-size
:
12px
;
color
:
$gl-link-color
;
margin-left
:
-55px
;
...
...
@@ -466,10 +466,12 @@ ul.notes {
width
:
23px
;
height
:
23px
;
border
:
1px
solid
$border-color
;
transition
:
transform
.1s
ease-in-out
;
&
:hover
{
background
:
$gl-info
;
color
:
$white-light
;
transform
:
scale
(
1
.15
);
}
&
:active
{
...
...
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