1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/* This is the basic body style of the graph area */
.graph-area-body {
color: white;
background-color: black;
}
/* Metric Completer Settings */
.completer-input-field {
font-size: 11pt;
font-family: monospace;
}
/* This class is applied to each completer result row. */
.metric-result div {
font-size: 11pt;
font-family: monospace;
}
/* This class is applied to completer results that are already present
in the graph area. */
.metric-toggled div {
font-weight: bold;
}
/* Likewise this is applied to any metrics not in the graph area already. */
.metric-not-toggled div {
}
/* This applies to any results that are branch nodes, not actual metrics. */
.result-is-branch-node {
background-color: rgb(240, 245, 255) !important;
}
|