2013-02-12 07:15:40 -05:00
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-13 13:30:51 -04:00
|
|
|
.eval_stats {
|
2015-01-09 08:23:09 -05:00
|
|
|
font-size: 11px;
|
2013-07-13 13:30:51 -04:00
|
|
|
}
|
|
|
|
|
|
2017-12-21 12:58:05 -05:00
|
|
|
div.query-history {
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
padding-top: 1em;
|
2019-10-21 14:18:47 -04:00
|
|
|
float: left;
|
2017-12-21 12:58:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.query-history:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.query-history button {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
padding: 0;
|
2019-02-07 16:18:09 -05:00
|
|
|
color: inherit;
|
2017-12-21 12:58:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.query-history.is-checked {
|
|
|
|
|
color: #286090;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.page-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 08:34:20 -04:00
|
|
|
.graph_wrapper {
|
2015-01-19 08:27:07 -05:00
|
|
|
margin-top: 12px;
|
2013-05-02 08:34:20 -04:00
|
|
|
}
|
|
|
|
|
|
2013-02-12 07:15:40 -05:00
|
|
|
.graph {
|
2013-04-17 10:49:21 -04:00
|
|
|
position: relative;
|
2013-07-01 08:47:43 -04:00
|
|
|
left: 40px;
|
2013-04-17 10:49:21 -04:00
|
|
|
min-height: 400px;
|
2013-02-12 07:15:40 -05:00
|
|
|
}
|
|
|
|
|
|
2015-01-14 11:56:03 -05:00
|
|
|
#add_graph {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs {
|
2015-01-19 08:27:07 -05:00
|
|
|
margin-top: 10px;
|
2015-01-14 11:56:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs > li > a {
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-pane {
|
|
|
|
|
border-left: 1px solid #ddd;
|
|
|
|
|
border-right: 1px solid #ddd;
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 08:47:43 -04:00
|
|
|
.graph svg {
|
|
|
|
|
border-top: 1px solid #aaa;
|
|
|
|
|
border-right: 1px solid #aaa;
|
|
|
|
|
border-bottom: 1px solid #aaa;
|
2013-02-12 07:15:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.legend {
|
2013-04-17 10:49:21 -04:00
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
2017-04-06 11:04:44 -04:00
|
|
|
margin: 0 0 0 60px;
|
2013-07-01 08:47:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.graph_area {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2017-04-06 11:04:44 -04:00
|
|
|
margin: 5px 0 5px 20px;
|
2013-07-01 08:47:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.y_axis {
|
2017-04-06 11:04:44 -04:00
|
|
|
overflow: visible;
|
2013-07-01 08:47:43 -04:00
|
|
|
position: absolute;
|
|
|
|
|
top: 1px;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 40px;
|
2013-02-12 07:15:40 -05:00
|
|
|
}
|
2013-04-11 12:17:33 -04:00
|
|
|
|
2017-04-06 11:04:44 -04:00
|
|
|
.y_axis svg {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-11 12:17:33 -04:00
|
|
|
.graph .detail .item.active {
|
|
|
|
|
line-height: 1.4em;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-12 04:39:15 -04:00
|
|
|
.labels {
|
2013-04-11 12:17:33 -04:00
|
|
|
font-size: 11px;
|
|
|
|
|
line-height: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.graph .detail .item .detail_swatch {
|
|
|
|
|
float: right;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 2px 2px 0 8px;
|
|
|
|
|
}
|
2013-04-17 10:49:21 -04:00
|
|
|
|
2017-10-24 04:48:58 -04:00
|
|
|
input[title]:hover:after {
|
2013-04-17 10:49:21 -04:00
|
|
|
content: attr(title);
|
|
|
|
|
}
|
2013-04-26 10:50:59 -04:00
|
|
|
|
2013-07-13 13:30:51 -04:00
|
|
|
.config input, .config select {
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.config label {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-23 20:18:49 -04:00
|
|
|
.console_table {
|
2015-01-14 11:56:03 -05:00
|
|
|
margin: 5px 0px;
|
2013-04-26 10:50:59 -04:00
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
2013-07-13 13:30:51 -04:00
|
|
|
|
2017-10-24 04:48:58 -04:00
|
|
|
select[name="insert_metric"] {
|
2013-07-13 13:30:51 -04:00
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.datepicker {
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-24 06:37:51 -04:00
|
|
|
input[name="end_input"], input[name="range_input"] {
|
2015-01-14 11:56:03 -05:00
|
|
|
margin-left: -1px;
|
|
|
|
|
margin-right: -1px;
|
2013-07-24 06:37:51 -04:00
|
|
|
}
|
2014-10-30 11:18:05 -04:00
|
|
|
|
2019-01-31 12:03:50 -05:00
|
|
|
.error, .warning {
|
2015-01-14 11:56:03 -05:00
|
|
|
padding: 5px;
|
2014-10-30 11:18:05 -04:00
|
|
|
margin: 2px;
|
|
|
|
|
}
|
2015-01-09 07:55:01 -05:00
|
|
|
|
2015-01-14 11:56:03 -05:00
|
|
|
.btn, .form-control, .nav-tabs > li > a {
|
2015-01-09 07:55:01 -05:00
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.prometheus_input_group {
|
|
|
|
|
display: inline-block;
|
2015-01-19 08:15:37 -05:00
|
|
|
margin: 10px 5px;
|
2015-01-09 07:55:01 -05:00
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-20 10:43:23 -05:00
|
|
|
.prometheus_input_group.range_input {
|
2017-04-06 11:04:44 -04:00
|
|
|
margin-left: 59px;
|
2015-01-20 10:43:23 -05:00
|
|
|
}
|
|
|
|
|
|
2015-01-14 11:56:03 -05:00
|
|
|
.prometheus_input_group .btn {
|
|
|
|
|
font-size: 0.8em;
|
2019-02-07 16:18:09 -05:00
|
|
|
border-color: #ccc;
|
2015-01-09 07:55:01 -05:00
|
|
|
}
|
|
|
|
|
|
2019-03-08 16:58:00 -05:00
|
|
|
.prometheus_input_group .timepicker-picker .btn {
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 07:55:01 -05:00
|
|
|
.prometheus_input_group .input {
|
|
|
|
|
width: 100px;
|
2019-10-21 14:18:47 -04:00
|
|
|
|
2019-02-07 16:18:09 -05:00
|
|
|
padding: 5px 12px 6px 12px;
|
2015-01-09 07:55:01 -05:00
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.42857143;
|
|
|
|
|
color: #555;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-image: none;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
|
|
|
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
|
|
|
|
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.prometheus_input_group .date_input {
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
2015-01-09 08:12:52 -05:00
|
|
|
|
2015-06-12 10:46:22 -04:00
|
|
|
.expression_input {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
margin-bottom: 10px;
|
2015-01-09 08:12:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expression_select {
|
2019-03-08 17:29:07 -05:00
|
|
|
width: 220px !important;
|
2015-01-19 08:27:07 -05:00
|
|
|
margin-left: 7px;
|
2015-01-09 08:12:52 -05:00
|
|
|
}
|
2015-01-09 08:27:58 -05:00
|
|
|
|
|
|
|
|
.graph_container .rickshaw_legend {
|
|
|
|
|
background-color: #222222;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
2019-01-31 12:03:50 -05:00
|
|
|
|
2019-02-07 16:18:09 -05:00
|
|
|
li.active, .dropdown-item:focus, .dropdown-item:hover {
|
|
|
|
|
background-color: steelblue;
|
2020-08-03 15:47:25 -04:00
|
|
|
color: #fff;
|
2019-01-31 12:03:50 -05:00
|
|
|
}
|
2019-10-21 14:18:47 -04:00
|
|
|
|
|
|
|
|
button.new_ui_button {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|