From 1d299f40422b7d7292fb8dbd19053e32fde269d6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 1 Oct 2013 15:06:51 +0200 Subject: [PATCH] minor tweaks in hazelnut style sheet --- plugins/hazelnut/static/css/hazelnut.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/plugins/hazelnut/static/css/hazelnut.css b/plugins/hazelnut/static/css/hazelnut.css index 30dc6fd9..dc3c175f 100644 --- a/plugins/hazelnut/static/css/hazelnut.css +++ b/plugins/hazelnut/static/css/hazelnut.css @@ -17,13 +17,17 @@ div.Hazelnut table.dataTable th { /* background: #CAE8EA url(../img/tablesort-header.jpg) no-repeat; */ } +div.Hazelnut table.dataTable th.checkbox { + padding-left: 14px; +} + div.Hazelnut table.dataTable td, div.Hazelnut table.dataTable textarea, div.Hazelnut table.dataTable input [type="text"] { font: normal 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; border-right: 1px solid #C1DAD7; border-bottom: 1px solid #C1DAD7; } div.Hazelnut table.dataTable td { - padding: 4px 8px 4px 8px; + padding-left: 4px 8px 4px 8px; /* this applies on even rows only, odd ones have a setting in bootstrap of rbg 249.249.249 */ background-color: #f4f4f4; } @@ -45,16 +49,16 @@ div.Hazelnut table.dataTable thead .sorting { background: url('../img/tablesort- div.Hazelnut table.dataTable thead .sorting_asc { background: url('../img/tablesort-header-up.png') no-repeat; } div.Hazelnut table.dataTable thead .sorting_desc { background: url('../img/tablesort-header-down.png') no-repeat; } /* this icons set does not have that exact equivalent - using an approximation for now */ -div.Hazelnut table.dataTable thead .sorting_asc_disabled { background: url('../img/tablesort-header.png') no-repeat; } -div.Hazelnut table.dataTable thead .sorting_desc_disabled { background: url('../img/tablesort-header.png') no-repeat; } +div.Hazelnut table.dataTable thead .sorting_asc_disabled { background: url('../img/tablesort-header.png') repeat-x; } +div.Hazelnut table.dataTable thead .sorting_desc_disabled { background: url('../img/tablesort-header.png') repeat-x; } /* the footers are not active */ div.Hazelnut table.dataTable tfoot { - background: url('../img/tablesort-header.png') no-repeat; + background: url('../img/tablesort-header.png') repeat-x; background-color: #caebea; } /* and when sorting is turned off it's useful to set this on header too */ div.Hazelnut table.dataTable thead { - background: url('../img/tablesort-header.png') no-repeat; + background: url('../img/tablesort-header.png') repeat-x; background-color: #caebea; } -- 2.43.0