forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ui): misc polish on flows UI (influxdata#18378)
* refactor: allow spaces in cell names * refactor: make markdown cells easier to modify * refactor: make visualization cells look more like other cells
- Loading branch information
1 parent
ba14b4a
commit 074b955
Showing
4 changed files
with
65 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,29 @@ | ||
@import '@influxdata/clockface/dist/variables.scss'; | ||
|
||
.notebook-visualization { | ||
min-height: 250px; | ||
|
||
.empty-graph-error { | ||
height: 200px; | ||
} | ||
.time-machine-tables { | ||
height: 200px; | ||
} | ||
background-color: $g2-kevlar; | ||
border-radius: $cf-radius; | ||
border: $cf-border solid $g2-kevlar; | ||
display: flex; | ||
align-items: stretch; | ||
} | ||
|
||
.notebook-visualization--header { | ||
width: 47px; | ||
flex: 0 0 47px; | ||
} | ||
|
||
.notebook-visualization--view { | ||
flex: 1 0 0; | ||
border-radius: $cf-radius - 1px; | ||
background-color: $g0-obsidian; | ||
min-height: 200px; | ||
padding: $cf-marg-b + $cf-marg-a; | ||
|
||
.empty-graph-error { | ||
height: 200px; | ||
} | ||
.time-machine-tables { | ||
height: 200px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters