mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-11-10 18:50:52 +03:00
0ed7891c0a
These are assets forked from https://github.com/tibbe/ekg at revision fe5e5a1e67 Only monitor.js was modified slightly to take a local port from the URL fragment. I think we should feel free to continue modifying this, or replace with our own tooling later on.
57 lines
571 B
CSS
57 lines
571 B
CSS
/**
|
|
* Blueprint/flot compatibility
|
|
*
|
|
* Resets some styles back to the browser default.
|
|
*/
|
|
|
|
.plot table {
|
|
width: auto;
|
|
border-spacing: 2px;
|
|
}
|
|
|
|
.plot th,
|
|
.plot td,
|
|
.plot caption {
|
|
padding: 0;
|
|
}
|
|
|
|
/**
|
|
* Body margin
|
|
*/
|
|
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
|
|
/**
|
|
* Plots
|
|
*/
|
|
|
|
.plot {
|
|
width: 600px;
|
|
height: 300px;
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.close-button {
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/**
|
|
* Table
|
|
*/
|
|
|
|
.value {
|
|
text-align: right;
|
|
}
|
|
|
|
.string {
|
|
text-align: left;
|
|
}
|
|
|
|
.graph-button {
|
|
cursor: pointer;
|
|
vertical-align: middle;
|
|
}
|