mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-23 01:06:35 +00:00
Fix chart legend not showing correctly when data has 1 series. (#926)
* Fix chart legend not showing correctly when data has 1 series. * Change to flexbox
This commit is contained in:
parent
672bfb375f
commit
0ab240c678
@ -1,17 +1,23 @@
|
||||
<link rel='import' href='../../../bower_components/polymer/polymer-element.html'>
|
||||
<link rel='import' href='../../../bower_components/paper-icon-button/paper-icon-button.html'>
|
||||
|
||||
<dom-module id="ha-chart-base">
|
||||
<template>
|
||||
<style>
|
||||
.chartHeader {
|
||||
display: flex;
|
||||
padding: 6px 0 0 0;
|
||||
width: 100%
|
||||
}
|
||||
.chartHeader div {
|
||||
display: inline-block;
|
||||
.chartHeader > div {
|
||||
vertical-align: top;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.chartTitle {
|
||||
margin: 0 12px 0 8px;
|
||||
.chartHeader > div.chartTitle {
|
||||
padding-top: 8px;
|
||||
}
|
||||
.chartHeader > div.chartLegend {
|
||||
flex: auto;
|
||||
}
|
||||
:root{
|
||||
user-select: none;
|
||||
@ -34,7 +40,7 @@
|
||||
.chartTooltip ul {
|
||||
display: inline-block;
|
||||
padding: 0 0px;
|
||||
margin: 0 0 8px 0;
|
||||
margin: 8px 0 0 0;
|
||||
width: 100%
|
||||
}
|
||||
.chartTooltip li {
|
||||
@ -64,9 +70,6 @@
|
||||
margin-right: 6px;
|
||||
width: 10px;
|
||||
}
|
||||
.chartZoomInline {
|
||||
float: right;
|
||||
}
|
||||
</style>
|
||||
<template is="dom-if" if="[[unit]]">
|
||||
<div class="chartHeader">
|
||||
@ -97,7 +100,7 @@
|
||||
style$="opacity:[[tooltip.opacity]]; top:[[tooltip.top]]; left:[[tooltip.left]]; padding:[[tooltip.yPadding]]px [[tooltip.xPadding]]px">
|
||||
<div class="title">[[tooltip.title]]</div>
|
||||
<div>
|
||||
<ul >
|
||||
<ul>
|
||||
<template is="dom-repeat" items="[[tooltip.lines]]">
|
||||
<li><em style$="background-color:[[item.bgColor]]"></em>[[item.text]]</li>
|
||||
</template>
|
||||
|
Loading…
x
Reference in New Issue
Block a user