mirror of https://gitee.com/bigwinds/arangodb
minor bugfixes and resizing of detailcharts
This commit is contained in:
parent
093a86f4c1
commit
4bbf9970a9
|
@ -167,7 +167,7 @@ arangoDatabase, btoa, _*/
|
||||||
|
|
||||||
server.addAuth = this.addAuth.bind(this);
|
server.addAuth = this.addAuth.bind(this);
|
||||||
this.dashboardView = new window.ServerDashboardView({
|
this.dashboardView = new window.ServerDashboardView({
|
||||||
dygraphConfig: window.newDygraphConfig,
|
dygraphConfig: window.dygraphConfig,
|
||||||
serverToShow : this.serverToShow
|
serverToShow : this.serverToShow
|
||||||
});
|
});
|
||||||
this.dashboardView.render();
|
this.dashboardView.render();
|
||||||
|
|
|
@ -113,7 +113,9 @@
|
||||||
div = "#" + div;
|
div = "#" + div;
|
||||||
}
|
}
|
||||||
var height, width;
|
var height, width;
|
||||||
|
console.log(div, $(div).height(), $(div).width());
|
||||||
$(div).attr("style", "");
|
$(div).attr("style", "");
|
||||||
|
console.log(div, $(div).height(), $(div).width());
|
||||||
height = $(div).height();
|
height = $(div).height();
|
||||||
width = $(div).width();
|
width = $(div).width();
|
||||||
return {
|
return {
|
||||||
|
@ -536,7 +538,6 @@
|
||||||
if (self.timer) {
|
if (self.timer) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.isUpdating = true;
|
|
||||||
self.timer = window.setInterval(function () {
|
self.timer = window.setInterval(function () {
|
||||||
self.getStatistics();
|
self.getStatistics();
|
||||||
if (self.isUpdating === false) {
|
if (self.isUpdating === false) {
|
||||||
|
@ -550,15 +551,20 @@
|
||||||
|
|
||||||
|
|
||||||
resize: function () {
|
resize: function () {
|
||||||
if (!this.intiliazed) {
|
if (!this.isUpdating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var self = this, dimensions;
|
var self = this, dimensions;
|
||||||
Object.keys(this.graphs).forEach(function (f) {
|
_.each(this.graphs,function (g) {
|
||||||
var g = self.graphs[f];
|
|
||||||
dimensions = self.getCurrentSize(g.maindiv_.id);
|
dimensions = self.getCurrentSize(g.maindiv_.id);
|
||||||
g.resize(dimensions.width, dimensions.height);
|
g.resize(dimensions.width, dimensions.height);
|
||||||
});
|
});
|
||||||
|
if (this.detailGraph) {
|
||||||
|
console.log(this.detailGraph);
|
||||||
|
dimensions = self.getCurrentSize(this.detailGraph.maindiv_.id);
|
||||||
|
console.log(dimensions);
|
||||||
|
this.detailGraph.resize(dimensions.width, dimensions.height);
|
||||||
|
}
|
||||||
this.prepareD3Charts(true);
|
this.prepareD3Charts(true);
|
||||||
this.prepareResidentSize(true);
|
this.prepareResidentSize(true);
|
||||||
},
|
},
|
||||||
|
@ -571,7 +577,9 @@
|
||||||
}
|
}
|
||||||
this.getStatistics();
|
this.getStatistics();
|
||||||
this.prepareDygraphs();
|
this.prepareDygraphs();
|
||||||
|
console.log("STARTING");
|
||||||
if (this.isUpdating) {
|
if (this.isUpdating) {
|
||||||
|
console.log("STARTING", this.isUpdating);
|
||||||
this.prepareD3Charts();
|
this.prepareD3Charts();
|
||||||
this.prepareResidentSize();
|
this.prepareResidentSize();
|
||||||
this.updateTendencies();
|
this.updateTendencies();
|
||||||
|
|
|
@ -68,10 +68,9 @@ $dashboard-padding: 28px;
|
||||||
.modal-chart-detail {
|
.modal-chart-detail {
|
||||||
@extend %pull-left;
|
@extend %pull-left;
|
||||||
height: 85%;
|
height: 85%;
|
||||||
width: 90%;
|
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
max-height: 100%;
|
max-height: 75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,10 +51,6 @@ div.resizecontainer {
|
||||||
width: $content-size;
|
width: $content-size;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: $content-size -30px - $legend-width;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
$int-width: ($content-size * 2 / 3);
|
$int-width: ($content-size * 2 / 3);
|
||||||
width: $int-width;
|
width: $int-width;
|
||||||
|
@ -98,6 +94,10 @@ div.resizecontainer {
|
||||||
margin-left: -($inner-content-size + 90px)/2;
|
margin-left: -($inner-content-size + 90px)/2;
|
||||||
width: $inner-content-size + 90px;
|
width: $inner-content-size + 90px;
|
||||||
|
|
||||||
|
.modal-inner-detail {
|
||||||
|
width: $inner-content-size - 30px - $legend-width;
|
||||||
|
}
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
width: $inner-content-size + 15px;
|
width: $inner-content-size + 15px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2103,9 +2103,6 @@ div.resizecontainer {
|
||||||
margin-left: -114px;
|
margin-left: -114px;
|
||||||
width: 228px; }
|
width: 228px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 228px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 152px; }
|
width: 152px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2129,6 +2126,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -109px;
|
margin-left: -109px;
|
||||||
width: 218px; }
|
width: 218px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: -102px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 143px; }
|
width: 143px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2156,9 +2155,6 @@ div.resizecontainer {
|
||||||
margin-left: -234px;
|
margin-left: -234px;
|
||||||
width: 468px; }
|
width: 468px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 468px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 312px; }
|
width: 312px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2182,6 +2178,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -229px;
|
margin-left: -229px;
|
||||||
width: 458px; }
|
width: 458px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 138px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 383px; }
|
width: 383px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2209,9 +2207,6 @@ div.resizecontainer {
|
||||||
margin-left: -354px;
|
margin-left: -354px;
|
||||||
width: 708px; }
|
width: 708px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 708px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 472px; }
|
width: 472px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2235,6 +2230,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -349px;
|
margin-left: -349px;
|
||||||
width: 698px; }
|
width: 698px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 378px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 623px; }
|
width: 623px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2262,9 +2259,6 @@ div.resizecontainer {
|
||||||
margin-left: -474px;
|
margin-left: -474px;
|
||||||
width: 948px; }
|
width: 948px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 948px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 632px; }
|
width: 632px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2288,6 +2282,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -469px;
|
margin-left: -469px;
|
||||||
width: 938px; }
|
width: 938px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 618px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 863px; }
|
width: 863px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2315,9 +2311,6 @@ div.resizecontainer {
|
||||||
margin-left: -594px;
|
margin-left: -594px;
|
||||||
width: 1188px; }
|
width: 1188px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1188px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 792px; }
|
width: 792px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2341,6 +2334,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -589px;
|
margin-left: -589px;
|
||||||
width: 1178px; }
|
width: 1178px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 858px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1103px; }
|
width: 1103px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2368,9 +2363,6 @@ div.resizecontainer {
|
||||||
margin-left: -714px;
|
margin-left: -714px;
|
||||||
width: 1428px; }
|
width: 1428px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1428px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 952px; }
|
width: 952px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2394,6 +2386,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -709px;
|
margin-left: -709px;
|
||||||
width: 1418px; }
|
width: 1418px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1098px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1343px; }
|
width: 1343px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2421,9 +2415,6 @@ div.resizecontainer {
|
||||||
margin-left: -834px;
|
margin-left: -834px;
|
||||||
width: 1668px; }
|
width: 1668px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1668px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1112px; }
|
width: 1112px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2447,6 +2438,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -829px;
|
margin-left: -829px;
|
||||||
width: 1658px; }
|
width: 1658px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1338px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1583px; }
|
width: 1583px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2474,9 +2467,6 @@ div.resizecontainer {
|
||||||
margin-left: -954px;
|
margin-left: -954px;
|
||||||
width: 1908px; }
|
width: 1908px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1908px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1272px; }
|
width: 1272px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2500,6 +2490,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -949px;
|
margin-left: -949px;
|
||||||
width: 1898px; }
|
width: 1898px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1578px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1823px; }
|
width: 1823px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2527,9 +2519,6 @@ div.resizecontainer {
|
||||||
margin-left: -1074px;
|
margin-left: -1074px;
|
||||||
width: 2148px; }
|
width: 2148px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2148px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1432px; }
|
width: 1432px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2553,6 +2542,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1069px;
|
margin-left: -1069px;
|
||||||
width: 2138px; }
|
width: 2138px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1818px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2063px; }
|
width: 2063px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2580,9 +2571,6 @@ div.resizecontainer {
|
||||||
margin-left: -1194px;
|
margin-left: -1194px;
|
||||||
width: 2388px; }
|
width: 2388px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2388px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1592px; }
|
width: 1592px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2606,6 +2594,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1189px;
|
margin-left: -1189px;
|
||||||
width: 2378px; }
|
width: 2378px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 2058px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2303px; }
|
width: 2303px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2633,9 +2623,6 @@ div.resizecontainer {
|
||||||
margin-left: -1314px;
|
margin-left: -1314px;
|
||||||
width: 2628px; }
|
width: 2628px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2628px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1752px; }
|
width: 1752px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2659,6 +2646,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1309px;
|
margin-left: -1309px;
|
||||||
width: 2618px; }
|
width: 2618px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 2298px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2543px; }
|
width: 2543px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
|
|
@ -2083,9 +2083,6 @@ div.resizecontainer {
|
||||||
margin-left: -114px;
|
margin-left: -114px;
|
||||||
width: 228px; }
|
width: 228px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 228px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 152px; }
|
width: 152px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2109,6 +2106,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -109px;
|
margin-left: -109px;
|
||||||
width: 218px; }
|
width: 218px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: -102px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 143px; }
|
width: 143px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2136,9 +2135,6 @@ div.resizecontainer {
|
||||||
margin-left: -234px;
|
margin-left: -234px;
|
||||||
width: 468px; }
|
width: 468px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 468px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 312px; }
|
width: 312px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2162,6 +2158,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -229px;
|
margin-left: -229px;
|
||||||
width: 458px; }
|
width: 458px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 138px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 383px; }
|
width: 383px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2189,9 +2187,6 @@ div.resizecontainer {
|
||||||
margin-left: -354px;
|
margin-left: -354px;
|
||||||
width: 708px; }
|
width: 708px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 708px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 472px; }
|
width: 472px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2215,6 +2210,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -349px;
|
margin-left: -349px;
|
||||||
width: 698px; }
|
width: 698px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 378px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 623px; }
|
width: 623px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2242,9 +2239,6 @@ div.resizecontainer {
|
||||||
margin-left: -474px;
|
margin-left: -474px;
|
||||||
width: 948px; }
|
width: 948px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 948px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 632px; }
|
width: 632px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2268,6 +2262,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -469px;
|
margin-left: -469px;
|
||||||
width: 938px; }
|
width: 938px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 618px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 863px; }
|
width: 863px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2295,9 +2291,6 @@ div.resizecontainer {
|
||||||
margin-left: -594px;
|
margin-left: -594px;
|
||||||
width: 1188px; }
|
width: 1188px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1188px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 792px; }
|
width: 792px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2321,6 +2314,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -589px;
|
margin-left: -589px;
|
||||||
width: 1178px; }
|
width: 1178px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 858px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1103px; }
|
width: 1103px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2348,9 +2343,6 @@ div.resizecontainer {
|
||||||
margin-left: -714px;
|
margin-left: -714px;
|
||||||
width: 1428px; }
|
width: 1428px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1428px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 952px; }
|
width: 952px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2374,6 +2366,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -709px;
|
margin-left: -709px;
|
||||||
width: 1418px; }
|
width: 1418px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1098px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1343px; }
|
width: 1343px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2401,9 +2395,6 @@ div.resizecontainer {
|
||||||
margin-left: -834px;
|
margin-left: -834px;
|
||||||
width: 1668px; }
|
width: 1668px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1668px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1112px; }
|
width: 1112px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2427,6 +2418,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -829px;
|
margin-left: -829px;
|
||||||
width: 1658px; }
|
width: 1658px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1338px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1583px; }
|
width: 1583px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2454,9 +2447,6 @@ div.resizecontainer {
|
||||||
margin-left: -954px;
|
margin-left: -954px;
|
||||||
width: 1908px; }
|
width: 1908px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 1908px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1272px; }
|
width: 1272px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2480,6 +2470,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -949px;
|
margin-left: -949px;
|
||||||
width: 1898px; }
|
width: 1898px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1578px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 1823px; }
|
width: 1823px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2507,9 +2499,6 @@ div.resizecontainer {
|
||||||
margin-left: -1074px;
|
margin-left: -1074px;
|
||||||
width: 2148px; }
|
width: 2148px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2148px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1432px; }
|
width: 1432px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2533,6 +2522,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1069px;
|
margin-left: -1069px;
|
||||||
width: 2138px; }
|
width: 2138px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 1818px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2063px; }
|
width: 2063px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2560,9 +2551,6 @@ div.resizecontainer {
|
||||||
margin-left: -1194px;
|
margin-left: -1194px;
|
||||||
width: 2388px; }
|
width: 2388px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2388px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1592px; }
|
width: 1592px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2586,6 +2574,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1189px;
|
margin-left: -1189px;
|
||||||
width: 2378px; }
|
width: 2378px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 2058px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2303px; }
|
width: 2303px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -2613,9 +2603,6 @@ div.resizecontainer {
|
||||||
margin-left: -1314px;
|
margin-left: -1314px;
|
||||||
width: 2628px; }
|
width: 2628px; }
|
||||||
|
|
||||||
.modal-inner-detail {
|
|
||||||
width: 2628px -230px; }
|
|
||||||
|
|
||||||
.dashboard-large-chart {
|
.dashboard-large-chart {
|
||||||
width: 1752px; }
|
width: 1752px; }
|
||||||
.dashboard-large-chart .dashboard-interior-chart {
|
.dashboard-large-chart .dashboard-interior-chart {
|
||||||
|
@ -2639,6 +2626,8 @@ div.resizecontainer {
|
||||||
div.modal-chart-detail {
|
div.modal-chart-detail {
|
||||||
margin-left: -1309px;
|
margin-left: -1309px;
|
||||||
width: 2618px; }
|
width: 2618px; }
|
||||||
|
div.modal-chart-detail .modal-inner-detail {
|
||||||
|
width: 2298px; }
|
||||||
div.modal-chart-detail .modal-body {
|
div.modal-chart-detail .modal-body {
|
||||||
width: 2543px; }
|
width: 2543px; }
|
||||||
div.modal-chart-detail .dashboard-large-chart {
|
div.modal-chart-detail .dashboard-large-chart {
|
||||||
|
@ -3308,10 +3297,9 @@ pre.gv-object-view {
|
||||||
padding-top: 20px; }
|
padding-top: 20px; }
|
||||||
|
|
||||||
.modal-chart-detail {
|
.modal-chart-detail {
|
||||||
height: 85%;
|
height: 85%; }
|
||||||
width: 90%; }
|
|
||||||
.modal-chart-detail .modal-body {
|
.modal-chart-detail .modal-body {
|
||||||
max-height: 100%; }
|
max-height: 75%; }
|
||||||
|
|
||||||
.modal-dashboard-legend {
|
.modal-dashboard-legend {
|
||||||
height: 250px;
|
height: 250px;
|
||||||
|
|
Loading…
Reference in New Issue