diff --git a/main/attendance/attendance_sheet.php b/main/attendance/attendance_sheet.php index 4c4ca766aa..6c026f18eb 100755 --- a/main/attendance/attendance_sheet.php +++ b/main/attendance/attendance_sheet.php @@ -252,7 +252,10 @@ if (api_is_allowed_to_edit(null, true)) { $disabled = 'disabled'; $style_td = ''; if ($next_attendance_calendar_id == $calendar['id']) { - $style_td = 'background-color:#F6F38C;opacity:0.4'; + if ($i%2==0) + $style_td = 'background-color:#eee;'; + else + $style_td = 'background-color:#dcdcdc;'; $disabled = ''; } ?> diff --git a/main/attendance/index.php b/main/attendance/index.php index cc101c56f2..02843661d9 100755 --- a/main/attendance/index.php +++ b/main/attendance/index.php @@ -104,16 +104,20 @@ $(function() { $(".checkbox_head_"+calendar_id).attr("disabled", false); $(".checkbox_head_"+calendar_id).removeAttr("disabled"); - $(".checkboxes_col_"+calendar_id).css({"opacity":"0.4","background-color":"#F6F38C", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid", "z-index":"1" }); + $(".row_odd td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#dcdcdc", "border-left":"1px #bbb solid", "border-right":"1px #bbb solid", "z-index":"1" }); + $(".row_even td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#eee", "border-left":"1px #bbb solid", "border-right":"1px #bbb solid", "z-index":"1" }); $(".checkboxes_col_"+calendar_id).mouseover(function() { - $(".checkbox_head_"+calendar_id).removeAttr("opacity"); - $(".checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#F6F38C", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" }); + //$(".checkbox_head_"+calendar_id).removeAttr("opacity"); + //$("row_even td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"red", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" , "border-bottom":"1px #ccc solid" }); + //$("row_odd td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#FFF", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" , "border-bottom":"1px #ccc solid" }); }); $(".checkboxes_col_"+calendar_id).mouseout(function() { - $(".checkboxes_col_"+calendar_id).css({"opacity":"0.4","background-color":"#F6F38C", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" }); + // $("row_even td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#F9F9F9", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" , "border-bottom":"1px #ccc solid" }); + // $("row_odd td.checkboxes_col_"+calendar_id).css({"opacity":"1","background-color":"#FFF", "border-left":"1px #EEEE00 solid", "border-right":"1px #EEEE00 solid" , "border-bottom":"1px #ccc solid" }); + });