Skip to content

Commit

Permalink
Remove gray border when row is selected
Browse files Browse the repository at this point in the history
The gray border was showing up all the time when as row was selected

Picked from 62edc20
  • Loading branch information
nitriques committed Jun 16, 2017
1 parent d79b3b0 commit 7084906
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions symphony/assets/css/src/symphony.tables.css
Expand Up @@ -210,11 +210,18 @@ tr[class*=status-] a:first-of-type::after {
border-bottom: 1px solid #f5f5f5;
}

tr[class*=status-]:nth-child(even) a:first-of-type::after,
tr[class*=status-]:nth-child(even):hover a:first-of-type::after {
tr[class*=status-]:nth-child(even) a:first-of-type::after {
border-bottom-color: #fff;
}

tr[class*=status-]:hover a:first-of-type::after {
color: #b4b4b4;
}

tr[class*=status-].selected a:first-of-type::after {
border-bottom-color: #5c83ba;
}

tr[class*=status-]:nth-child(even).selected a:first-of-type::after {
border-bottom-color: #668abe;
}

0 comments on commit 7084906

Please sign in to comment.