From ad1ff966cc176ec9a8af1401c4084991633fecde Mon Sep 17 00:00:00 2001 From: Philipp Hinrichsen Date: Fri, 29 Jan 2016 12:28:15 +0100 Subject: [PATCH] Change color of highlighted column --- src/css/layout/table.less | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/css/layout/table.less b/src/css/layout/table.less index 7c902cb6c..b63a3ebd3 100644 --- a/src/css/layout/table.less +++ b/src/css/layout/table.less @@ -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); } } @@ -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; }