mirror of https://gitee.com/bigwinds/arangodb
css
This commit is contained in:
parent
d7dc6ef6a8
commit
56991d0a77
|
@ -1,5 +1,5 @@
|
|||
<script id="dashboardHttpGroup.ejs" type="text/template">
|
||||
|
||||
<div id="<%=id%>"></div>
|
||||
<div id="<%=id%>" class="dashboardChart"></div>
|
||||
|
||||
</script>
|
||||
|
|
|
@ -352,6 +352,7 @@
|
|||
.x(function(d) { return d.label })
|
||||
.y(function(d) { return d.value })
|
||||
//.margin({top: 30, right: 20, bottom: 50, left: 175})
|
||||
.margin({left: 80})
|
||||
.showValues(true)
|
||||
.transitionDuration(350)
|
||||
.showControls(false);
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
.dashboardDistribution svg {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
.dashboardDistribution {
|
||||
width: 270px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.dashboardDistribution svg {
|
||||
width: 250px;
|
||||
height: 220px;
|
||||
}
|
||||
|
|
|
@ -3,3 +3,7 @@
|
|||
height: 300px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.dashboardChart {
|
||||
float: left;
|
||||
}
|
||||
|
|
|
@ -863,6 +863,13 @@ select.filterSelect {
|
|||
height: 300px;
|
||||
border: 1px solid black; }
|
||||
|
||||
.dashboardChart {
|
||||
float: left; }
|
||||
|
||||
.dashboardDistribution {
|
||||
width: 270px;
|
||||
float: left; }
|
||||
|
||||
.dashboardDistribution svg {
|
||||
width: 300px;
|
||||
height: 300px; }
|
||||
width: 250px;
|
||||
height: 220px; }
|
||||
|
|
Loading…
Reference in New Issue