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
iv
gitlab-ce
Commits
d7c76d09
Commit
d7c76d09
authored
Jun 01, 2016
by
Annabel Dunstone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement new row hover style
parent
e9bb895b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+2
-1
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+10
-3
No files found.
app/assets/stylesheets/framework/variables.scss
View file @
d7c76d09
...
...
@@ -63,7 +63,8 @@ $gl-padding-top: 10px;
/*
* Misc
*/
$row-hover
:
#f4f8fe
;
$row-hover
:
#f7faff
;
$row-hover-border
:
#b2d7ff
;
$progress-color
:
#c0392b
;
$avatar_radius
:
50%
;
$header-height
:
50px
;
...
...
app/assets/stylesheets/pages/tree.scss
View file @
d7c76d09
...
...
@@ -15,16 +15,23 @@
margin-bottom
:
0
;
tr
{
>
td
,
>
th
{
border-bottom
:
1px
solid
$table-border-gray
;
border-top
:
1px
solid
$table-border-gray
;
td
,
th
{
line-height
:
23px
;
}
&
:hover
{
cursor
:
pointer
;
td
{
background
:
$row-hover
;
background-color
:
$row-hover
;
border-top
:
1px
solid
$row-hover-border
;
border-bottom
:
1px
solid
$row-hover-border
;
}
cursor
:
pointer
;
}
&
.selected
{
td
{
background
:
$gray-dark
;
...
...
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