From b6902e4c58d777085e1d52f14cf0743b6719294c Mon Sep 17 00:00:00 2001 From: Jared Dillard Date: Wed, 25 Nov 2015 15:26:02 -0600 Subject: add active table row css rule --- src/usr/local/www/bootstrap/css/pfSense.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/usr/local/www/bootstrap') diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css index b0eced3..23a974b 100644 --- a/src/usr/local/www/bootstrap/css/pfSense.css +++ b/src/usr/local/www/bootstrap/css/pfSense.css @@ -161,6 +161,16 @@ tr.disabled th { padding: 4px 4px 4px 10px; } +/* active table row */ +.table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active { + background-color: #BDBDBD; +} + +/* active table row on hover */ +.table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr.active:hover>th, .table-hover>tbody>tr:hover>.active, .table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover { + background-color: #BDBDBD; +} + .help-block { margin-bottom: 0; } -- cgit v1.1