File: dashboard-default.css

package info (click to toggle)
graphite-web 1.1.10-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,864 kB
  • sloc: javascript: 86,828; python: 12,228; sh: 91; makefile: 54
file content (32 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (5)
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;
}