Merge branch '81-resaltar-objetos-en-consola' into 'develop'
Change background color when mouse over rows in agent and module managers - #81 See merge request !212
This commit is contained in:
commit
b2489e90aa
|
@ -820,6 +820,19 @@ if (check_acl ($config['id_user'], $agent['id_grupo'], "AW")) {
|
|||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready (function () {
|
||||
|
||||
$('[id^=checkbox-id_delete]').change(function(){
|
||||
if($(this).parent().parent().hasClass('checkselected')){
|
||||
$(this).parent().parent().removeClass('checkselected');
|
||||
}
|
||||
else{
|
||||
$(this).parent().parent().addClass('checkselected');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function change_mod_filter() {
|
||||
var checked = $("#checkbox-status_hierachy_mode").is(":checked");
|
||||
|
||||
|
|
|
@ -3796,3 +3796,13 @@ color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
|
|||
#filter_event_type {
|
||||
width:50%;
|
||||
}
|
||||
|
||||
.rowPair:hover, .rowOdd:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.databox.data > tbody > tr:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.checkselected{
|
||||
background-color: #eee;
|
||||
}
|
|
@ -3434,3 +3434,13 @@ color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
|
|||
#tinymce{
|
||||
padding-top:20px;
|
||||
}
|
||||
|
||||
.rowPair:hover, .rowOdd:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.databox.data > tbody > tr:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.checkselected{
|
||||
background-color: #eee;
|
||||
}
|
|
@ -3342,3 +3342,13 @@ color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
|
|||
#tinymce{
|
||||
padding-top:20px;
|
||||
}
|
||||
|
||||
.rowPair:hover, .rowOdd:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.databox.data > tbody > tr:hover{
|
||||
background-color: #eee;
|
||||
}
|
||||
.checkselected{
|
||||
background-color: #eee;
|
||||
}
|
Loading…
Reference in New Issue