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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
a738d381
Commit
a738d381
authored
Mar 21, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added row hover styles to IDE file list
Closes #44293
parent
cb94afc5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
42 deletions
+49
-42
app/assets/javascripts/ide/components/new_dropdown/index.vue
app/assets/javascripts/ide/components/new_dropdown/index.vue
+39
-40
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+5
-2
changelogs/unreleased/ide-file-row-hover-style.yml
changelogs/unreleased/ide-file-row-hover-style.yml
+5
-0
No files found.
app/assets/javascripts/ide/components/new_dropdown/index.vue
View file @
a738d381
<
script
>
import
{
mapActions
}
from
'
vuex
'
;
import
icon
from
'
~/vue_shared/components/icon.vue
'
;
import
newModal
from
'
./modal.vue
'
;
import
upload
from
'
./upload.vue
'
;
import
{
mapActions
}
from
'
vuex
'
;
import
icon
from
'
~/vue_shared/components/icon.vue
'
;
import
newModal
from
'
./modal.vue
'
;
import
upload
from
'
./upload.vue
'
;
export
default
{
export
default
{
components
:
{
icon
,
newModal
,
...
...
@@ -28,9 +28,7 @@
};
},
methods
:
{
...
mapActions
([
'
createTempEntry
'
,
]),
...
mapActions
([
'
createTempEntry
'
]),
createNewItem
(
type
)
{
this
.
modalType
=
type
;
this
.
openModal
=
true
;
...
...
@@ -43,7 +41,7 @@
this
.
dropdownOpen
=
!
this
.
dropdownOpen
;
},
},
};
};
</
script
>
<
template
>
...
...
@@ -59,6 +57,7 @@
class=
"btn btn-sm btn-default dropdown-toggle add-to-tree"
aria-label=
"Create new file or directory"
@
click.stop=
"openDropdown()"
@
blur=
"openDropdown"
>
<icon
name=
"plus"
...
...
app/assets/stylesheets/pages/repo.scss
View file @
a738d381
...
...
@@ -43,7 +43,7 @@
cursor
:
pointer
;
&
.file-open
{
background
:
$
white-normal
;
background
:
$
link-active-background
;
}
.ide-file-name
{
...
...
@@ -72,7 +72,10 @@
margin-right
:
-8px
;
}
&
:hover
{
&
:hover
,
&
:focus
{
background
:
$link-active-background
;
.ide-new-btn
{
display
:
block
;
}
...
...
changelogs/unreleased/ide-file-row-hover-style.yml
0 → 100644
View file @
a738d381
---
title
:
Added hover background color to IDE file list rows
merge_request
:
author
:
type
:
changed
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