Restore Line + Single Stat styling (#1594)
* Restore Line + Single Stat styling * Update CHANGELOGrevert-1594-1.3.2.x
parent
3375810544
commit
bdf6ffd73c
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
)
|
||||
|
|
|
@ -141,6 +141,7 @@
|
|||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
@include no-user-select();
|
||||
|
||||
&.graph-single-stat {
|
||||
|
|
Loading…
Reference in New Issue