BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a738d381
Unverified
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
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
42 deletions
+49
-42
index.vue
app/assets/javascripts/ide/components/new_dropdown/index.vue
+39
-40
repo.scss
app/assets/stylesheets/pages/repo.scss
+5
-2
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
{
components
:
{
icon
,
newModal
,
upload
,
export
default
{
components
:
{
icon
,
newModal
,
upload
,
},
props
:
{
branch
:
{
type
:
String
,
required
:
true
,
},
props
:
{
branch
:
{
type
:
String
,
required
:
true
,
},
path
:
{
type
:
String
,
required
:
true
,
},
path
:
{
type
:
String
,
required
:
true
,
},
data
()
{
return
{
openModal
:
false
,
modalType
:
''
,
dropdownOpen
:
false
,
};
},
data
()
{
return
{
openModal
:
false
,
modalType
:
''
,
dropdownOpen
:
false
,
};
},
methods
:
{
...
mapActions
([
'createTempEntry'
]),
createNewItem
(
type
)
{
this
.
modalType
=
type
;
this
.
openModal
=
true
;
this
.
dropdownOpen
=
false
;
},
methods
:
{
...
mapActions
([
'createTempEntry'
,
]),
createNewItem
(
type
)
{
this
.
modalType
=
type
;
this
.
openModal
=
true
;
this
.
dropdownOpen
=
false
;
},
hideModal
()
{
this
.
openModal
=
false
;
},
openDropdown
()
{
this
.
dropdownOpen
=
!
this
.
dropdownOpen
;
},
hideModal
()
{
this
.
openModal
=
false
;
},
};
openDropdown
()
{
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