Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Improve selected text color
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdh committed Oct 8, 2016
1 parent 51e264d commit dcc8e49
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions less/sortableTable.less
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,25 @@ table.sortableTable {
}
}
}
}
tr.rowHover:hover {
background: #ffcc99;
&.selected {
background: @braveOrange;
tr.rowHover:hover {
background: #ffcc99;
&.selected {
background: @braveOrange;
td {
color: @lightGray;
}
div {
color: @lightGray;
}
}
}
tr.selected {
background: @braveLightOrange;
td {
color: #d9d9d9;
}
div {
color: #d9d9d9;
}
}
}
tr.selected {
background: @braveLightOrange;
}

0 comments on commit dcc8e49

Please sign in to comment.