Skip to content

Commit

Permalink
Change color of highlighted column
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Hinrichsen committed Jan 29, 2016
1 parent b60dcfb commit ad1ff96
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/css/layout/table.less
Expand Up @@ -22,7 +22,7 @@
border: none;
background-color: @table-header-color;
&.cell-highlighted {
background-color: fadein(@table-header-color, 5);
background-color: fade(@table-header-color, 6);
}
}

Expand All @@ -40,16 +40,19 @@
table-layout: fixed;
}

.table > tbody > tr.active > td,
.table-hover > tbody > tr:hover > td {
background-color: @table-highlight-color;
}

.table > tbody > tr > td {
&.cell-highlighted {
background-color: fadein(@table-highlight-color, 1);
background-color: fade(@table-highlight-color, 1);
}
}

.table > tbody > tr.active > td,
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > td.cell-highlighted {
background-color: @table-highlight-color;
}


.table-selectable tr > td {
cursor: pointer;
}

0 comments on commit ad1ff96

Please sign in to comment.