Commit d7c76d09 authored by Annabel Dunstone's avatar Annabel Dunstone

Implement new row hover style

parent e9bb895b
...@@ -63,7 +63,8 @@ $gl-padding-top: 10px; ...@@ -63,7 +63,8 @@ $gl-padding-top: 10px;
/* /*
* Misc * Misc
*/ */
$row-hover: #f4f8fe; $row-hover: #f7faff;
$row-hover-border: #b2d7ff;
$progress-color: #c0392b; $progress-color: #c0392b;
$avatar_radius: 50%; $avatar_radius: 50%;
$header-height: 50px; $header-height: 50px;
......
...@@ -15,16 +15,23 @@ ...@@ -15,16 +15,23 @@
margin-bottom: 0; margin-bottom: 0;
tr { tr {
> td, > th { border-bottom: 1px solid $table-border-gray;
border-top: 1px solid $table-border-gray;
td, th {
line-height: 23px; line-height: 23px;
} }
&:hover { &:hover {
cursor: pointer;
td { 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 { &.selected {
td { td {
background: $gray-dark; background: $gray-dark;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment