Change visual console graphs design and fix selection move - #84
@ -2713,8 +2713,8 @@ function eventsItems(drag) {
|
|||||||
unselectAll();
|
unselectAll();
|
||||||
$(divParent).attr('withborder','true');
|
$(divParent).attr('withborder','true');
|
||||||
$(divParent).css('border', '1px blue dotted');
|
$(divParent).css('border', '1px blue dotted');
|
||||||
//$(divParent).css('left', '-=1px');
|
$(divParent).css('left', '-=1px');
|
||||||
//$(divParent).css('top', '-=1px');
|
$(divParent).css('top', '-=1px');
|
||||||
|
|
||||||
if ($(divParent).hasClass('box_item')) {
|
if ($(divParent).hasClass('box_item')) {
|
||||||
creationItem = null;
|
creationItem = null;
|
||||||
@ -3116,8 +3116,8 @@ function unselectAll() {
|
|||||||
$(".item").each(function(){
|
$(".item").each(function(){
|
||||||
$(this).css('border', '');
|
$(this).css('border', '');
|
||||||
if($(this).attr('withborder') == 'true'){
|
if($(this).attr('withborder') == 'true'){
|
||||||
//$(this).css('top', '+=1');
|
$(this).css('top', '+=1');
|
||||||
//$(this).css('left', '+=1');
|
$(this).css('left', '+=1');
|
||||||
$(this).attr('withborder', 'false');
|
$(this).attr('withborder', 'false');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 4.3 KiB |
@ -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(){
|
$('.percentile_item a > img').each(function(){
|
||||||
|
|
||||||
|