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
deae166a
Commit
deae166a
authored
Oct 02, 2020
by
Enrique Alcantara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable pointer events in tooltips
Tooltips were non-interactible because pointer events were disabled
parent
adef7c03
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
8 deletions
+2
-8
app/assets/javascripts/boards/components/boards_selector.vue
app/assets/javascripts/boards/components/boards_selector.vue
+1
-1
app/assets/javascripts/pipelines/components/pipelines_list/stage.vue
...javascripts/pipelines/components/pipelines_list/stage.vue
+1
-1
app/assets/stylesheets/bootstrap_migration.scss
app/assets/stylesheets/bootstrap_migration.scss
+0
-6
No files found.
app/assets/javascripts/boards/components/boards_selector.vue
View file @
deae166a
...
...
@@ -261,7 +261,7 @@ export default {
>
<gl-deprecated-dropdown-item
v-show=
"filteredBoards.length === 0"
class=
"
no-pointer-events
text-secondary"
class=
"
gl-pointer-events-none
text-secondary"
>
{{
s__
(
'
IssueBoards|No matching boards found
'
)
}}
</gl-deprecated-dropdown-item>
...
...
app/assets/javascripts/pipelines/components/pipelines_list/stage.vue
View file @
deae166a
...
...
@@ -168,7 +168,7 @@ export default {
aria-expanded=
"false"
@
click=
"onClickStage"
>
<span
:aria-label=
"stage.title"
aria-hidden=
"true"
class=
"
no-pointer-events
"
>
<span
:aria-label=
"stage.title"
aria-hidden=
"true"
class=
"
gl-pointer-events-none
"
>
<gl-icon
:name=
"borderlessIcon"
/>
</span>
</button>
...
...
app/assets/stylesheets/bootstrap_migration.scss
View file @
deae166a
...
...
@@ -131,12 +131,6 @@ table {
border-spacing
:
0
;
}
.tooltip
,
.no-pointer-events
{
// Fix bootstrap4 bug whereby tooltips flicker when they are hovered over their borders
pointer-events
:
none
;
}
@each
$breakpoint
in
map-keys
(
$grid-breakpoints
)
{
@include
media-breakpoint-up
(
$breakpoint
)
{
$infix
:
breakpoint-infix
(
$breakpoint
,
$grid-breakpoints
);
...
...
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