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:
Enrique Camargo 2017-02-27 14:38:12 +01:00
commit b2489e90aa
4 changed files with 43 additions and 0 deletions

View File

@ -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");

View File

@ -3795,4 +3795,14 @@ color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
#filter_event_severity,
#filter_event_type {
width:50%;
}
.rowPair:hover, .rowOdd:hover{
background-color: #eee;
}
.databox.data > tbody > tr:hover{
background-color: #eee;
}
.checkselected{
background-color: #eee;
}

View File

@ -3433,4 +3433,14 @@ 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;
}

View File

@ -3341,4 +3341,14 @@ 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;
}