Restore Line + Single Stat styling (#1594)

* Restore Line + Single Stat styling

* Update CHANGELOG
revert-1594-1.3.2.x
lukevmorris 2017-06-06 15:07:11 -07:00 committed by GitHub
parent 3375810544
commit bdf6ffd73c
3 changed files with 9 additions and 1 deletions

View File

@ -6,6 +6,11 @@
### UI Improvements
## v1.3.2.1 [2017-06-06]
### Bug Fixes
1. [#1594](https://github.com/influxdata/chronograf/pull/1594): Restore Line + Single Stat styles
## v1.3.2.0 [2017-06-05]
### Bug Fixes

View File

@ -151,7 +151,9 @@ export default React.createClass({
timeRange={timeRange}
/>
{showSingleStat
? <div className="graph-single-stat single-stat">{roundedValue}</div>
? <div className="graph-single-stat single-stat">
<span className="single-stat--value">{roundedValue}</span>
</div>
: null}
</div>
)

View File

@ -141,6 +141,7 @@
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
@include no-user-select();
&.graph-single-stat {