Change visual console graphs design and fix selection move - #84

This commit is contained in:
enriquecd 2017-03-03 11:25:27 +01:00
parent 46c9709256
commit e3f62b1857
7 changed files with 10 additions and 4 deletions

View File

@ -2713,8 +2713,8 @@ function eventsItems(drag) {
unselectAll();
$(divParent).attr('withborder','true');
$(divParent).css('border', '1px blue dotted');
//$(divParent).css('left', '-=1px');
//$(divParent).css('top', '-=1px');
$(divParent).css('left', '-=1px');
$(divParent).css('top', '-=1px');
if ($(divParent).hasClass('box_item')) {
creationItem = null;
@ -3116,8 +3116,8 @@ function unselectAll() {
$(".item").each(function(){
$(this).css('border', '');
if($(this).attr('withborder') == 'true'){
//$(this).css('top', '+=1');
//$(this).css('left', '+=1');
$(this).css('top', '+=1');
$(this).css('left', '+=1');
$(this).attr('withborder', 'false');
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -355,6 +355,12 @@ $ignored_params['refr'] = '';
});
$(".graph").each(function(){
height = parseInt($(this).css("height")) - 30;
$(this).css('height', height);
});
/*
$('.percentile_item a > img').each(function(){