fix(tickscript): repair editor scrolling
parent
d15393614d
commit
d8d8469b5b
|
@ -4,6 +4,7 @@
|
|||
|
||||
1. [#5596](https://github.com/influxdata/chronograf/pull/5596): Show rule name from tickscript.
|
||||
1. [#5597](https://github.com/influxdata/chronograf/pull/5597): Do not truncate dashboard name with lots of room.
|
||||
1. [#5598](https://github.com/influxdata/chronograf/pull/5598): Repair TICKscript editor scrolling.
|
||||
|
||||
### Features
|
||||
|
||||
|
|
|
@ -13,7 +13,9 @@ $tickscript-controls-height: 60px;
|
|||
.tickscript-controls,
|
||||
.tickscript-console,
|
||||
.tickscript-editor {
|
||||
width: 100%;
|
||||
// cannot use 100%, since it does not work in FireFox
|
||||
// see https://github.com/influxdata/chronograf/issues/5037
|
||||
width: calc(100vw - 60px);
|
||||
}
|
||||
.tickscript-console,
|
||||
.tickscript-controls {
|
||||
|
|
Loading…
Reference in New Issue