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
21446129
Commit
21446129
authored
Aug 29, 2017
by
Eric Eastwood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove focus styles from dropdown empty link
Fix
https://gitlab.com/gitlab-org/gitlab-ce/issues/37023
parent
d68ff7f5
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
28 additions
and
15 deletions
+28
-15
app/assets/javascripts/gl_dropdown.js
app/assets/javascripts/gl_dropdown.js
+3
-3
app/assets/javascripts/search_autocomplete.js
app/assets/javascripts/search_autocomplete.js
+1
-1
app/assets/stylesheets/framework/dropdowns.scss
app/assets/stylesheets/framework/dropdowns.scss
+14
-6
app/views/layouts/_search.html.haml
app/views/layouts/_search.html.haml
+2
-2
app/views/projects/diffs/_stats.html.haml
app/views/projects/diffs/_stats.html.haml
+2
-2
changelogs/unreleased/37023-remove-focus-styles-from-dropdown-empty-link.yml
...ed/37023-remove-focus-styles-from-dropdown-empty-link.yml
+5
-0
spec/javascripts/gl_dropdown_spec.js
spec/javascripts/gl_dropdown_spec.js
+1
-1
No files found.
app/assets/javascripts/gl_dropdown.js
View file @
21446129
...
...
@@ -175,7 +175,7 @@ GitLabDropdownFilter = (function() {
elements
.
show
().
removeClass
(
'
option-hidden
'
);
}
elements
.
parent
().
find
(
'
.dropdown-menu-empty-
link
'
).
toggleClass
(
'
hidden
'
,
elements
.
is
(
'
:visible
'
));
elements
.
parent
().
find
(
'
.dropdown-menu-empty-
item
'
).
toggleClass
(
'
hidden
'
,
elements
.
is
(
'
:visible
'
));
}
};
...
...
@@ -247,7 +247,7 @@ GitLabDropdown = (function() {
currentIndex
=
-
1
;
NON_SELECTABLE_CLASSES
=
'
.divider, .separator, .dropdown-header, .dropdown-menu-empty-
link
'
;
NON_SELECTABLE_CLASSES
=
'
.divider, .separator, .dropdown-header, .dropdown-menu-empty-
item
'
;
SELECTABLE_CLASSES
=
"
.dropdown-content li:not(
"
+
NON_SELECTABLE_CLASSES
+
"
, .option-hidden)
"
;
...
...
@@ -702,7 +702,7 @@ GitLabDropdown = (function() {
GitLabDropdown
.
prototype
.
noResults
=
function
()
{
var
html
;
return
html
=
'
<li class="dropdown-menu-empty-link"><a href="#" class="is-focused"
>No matching results</a></li>
'
;
return
'
<li class="dropdown-menu-empty-item"><a
>No matching results</a></li>
'
;
};
GitLabDropdown
.
prototype
.
rowClicked
=
function
(
el
)
{
...
...
app/assets/javascripts/search_autocomplete.js
View file @
21446129
...
...
@@ -363,7 +363,7 @@
restoreMenu
()
{
var
html
;
html
=
"
<ul> <li><a class='dropdown-menu-empty-link is-focused'>Loading...</a></li> </ul>
"
;
html
=
'
<ul><li class="dropdown-menu-empty-item"><a>Loading...</a></li></ul>
'
;
return
this
.
dropdownContent
.
html
(
html
);
}
...
...
app/assets/stylesheets/framework/dropdowns.scss
View file @
21446129
...
...
@@ -163,12 +163,6 @@
}
}
&
.dropdown-menu-empty-link
{
&
.is-focused
{
background-color
:
$dropdown-empty-row-bg
;
}
}
&
.dropdown-menu-user-link
{
line-height
:
16px
;
}
...
...
@@ -256,6 +250,13 @@
@include
dropdown-link
;
}
.dropdown-menu-empty-item
a
{
&
:hover
,
&
:focus
{
background-color
:
transparent
;
}
}
.dropdown-header
{
color
:
$gl-text-color-secondary
;
font-size
:
13px
;
...
...
@@ -800,6 +801,13 @@
}
}
}
&
.dropdown-menu-empty-item
a
{
&
:hover
,
&
:focus
{
background-color
:
transparent
;
}
}
}
&
.dropdown-menu-selectable
{
...
...
app/views/layouts/_search.html.haml
View file @
21446129
...
...
@@ -17,8 +17,8 @@
.dropdown-menu.dropdown-select
=
dropdown_content
do
%ul
%li
%a
.is-focused.dropdown-menu-empty-link
%li
.dropdown-menu-empty-item
%a
Loading...
=
dropdown_loading
%i
.search-icon
...
...
app/views/projects/diffs/_stats.html.haml
View file @
21446129
...
...
@@ -29,6 +29,6 @@
+
#{
diff_file
.
added_lines
}
%span
.cred
<
\
-
#{
diff_file
.
removed_lines
}
%li
.dropdown-menu-empty-
link
.hidden
%a
{
href:
"#"
}
%li
.dropdown-menu-empty-
item
.hidden
%a
No
files
found
.
changelogs/unreleased/37023-remove-focus-styles-from-dropdown-empty-link.yml
0 → 100644
View file @
21446129
---
title
:
Remove focus styles from dropdown empty links
merge_request
:
author
:
type
:
fixed
spec/javascripts/gl_dropdown_spec.js
View file @
21446129
...
...
@@ -8,7 +8,7 @@ describe('glDropdown', function describeDropdown() {
preloadFixtures
(
'
static/gl_dropdown.html.raw
'
);
loadJSONFixtures
(
'
projects.json
'
);
const
NON_SELECTABLE_CLASSES
=
'
.divider, .separator, .dropdown-header, .dropdown-menu-empty-
link
'
;
const
NON_SELECTABLE_CLASSES
=
'
.divider, .separator, .dropdown-header, .dropdown-menu-empty-
item
'
;
const
SEARCH_INPUT_SELECTOR
=
'
.dropdown-input-field
'
;
const
ITEM_SELECTOR
=
`.dropdown-content li:not(
${
NON_SELECTABLE_CLASSES
}
)`
;
const
FOCUSED_ITEM_SELECTOR
=
`
${
ITEM_SELECTOR
}
a.is-focused`
;
...
...
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