mirror of
https://github.com/prometheus/docs.git
synced 2026-02-05 15:45:27 +01:00
Routing tree editor is now only available as a link from within the configuration docs for alertmanager. Code changes: - Routing tree CSS is now in a CSS file - The label set input now draws the route when "enter" is pressed
40 lines
458 B
CSS
40 lines
458 B
CSS
.routing-table {
|
|
font: 12px sans-serif;
|
|
}
|
|
|
|
.node circle {
|
|
stroke: #e6522c;
|
|
stroke-width: 1.5px;
|
|
}
|
|
|
|
.node text {
|
|
font: 10px sans-serif;
|
|
}
|
|
|
|
.link {
|
|
fill: none;
|
|
stroke: #ccc;
|
|
stroke-width: 1.5px;
|
|
}
|
|
|
|
.form-control.label-input {
|
|
padding: 2px;
|
|
width: 450px;
|
|
}
|
|
|
|
textarea {
|
|
border-color: #ddd;
|
|
height: 450px;
|
|
padding: 2px 0;
|
|
width: 100%;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.block {
|
|
display: block;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block;
|
|
}
|