mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
Fix chart scaling
This commit is contained in:
parent
29b1da6ca1
commit
76e4a6eb5d
3 changed files with 12 additions and 18 deletions
|
@ -50,10 +50,6 @@ footer {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#main {
|
||||
|
||||
}
|
||||
|
@ -69,17 +65,12 @@ h2 {
|
|||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
#S1-image {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.column-left {
|
||||
width: 150px !important;
|
||||
|
||||
}
|
||||
|
||||
.column-right {
|
||||
padding-top: 25px;
|
||||
padding-bottom: 40px;
|
||||
padding: 25px 5px 25px 10px;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
@ -111,12 +102,15 @@ h2 {
|
|||
}
|
||||
|
||||
.layout-page h2 {
|
||||
text-align: center;
|
||||
|
||||
margin: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.line-chart {
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.data-table {
|
||||
|
@ -129,6 +123,8 @@ h2 {
|
|||
|
||||
border: 1px solid #999;
|
||||
border-collapse: collapse;
|
||||
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.data-table th {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<table>
|
||||
<table height="100%">
|
||||
{{#if entityName}}
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
|
@ -7,7 +7,7 @@
|
|||
</tr>
|
||||
{{/if}}
|
||||
<tr>
|
||||
<td class="column-left">
|
||||
<td class="column-left" valign="top">
|
||||
{{property-table model=entity showProperty="showPropertyValues"}}
|
||||
</td>
|
||||
<td class="column-right">
|
||||
|
|
|
@ -1,3 +1 @@
|
|||
<div>
|
||||
Get some space
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue