
New graph widget, total reworking of response caching to avoid mutation of the cache while iterating. All timed responses now added to an event queue, which the APISamper processes and updates the graph with.
61 lines
1.1 KiB
SCSS
61 lines
1.1 KiB
SCSS
// ----------------------------------------------------------------------------
|
|
// Sass declarations
|
|
// ----------------------------------------------------------------------------
|
|
$background-color: #118E9E;
|
|
$value-color: #fff;
|
|
|
|
$title-color: rgba(255, 255, 255, 1);
|
|
$label-color: rgba(255, 255, 255, 1);
|
|
$moreinfo-color: rgba(255, 255, 255, 1);
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Widget-list styles
|
|
// ----------------------------------------------------------------------------
|
|
.widget-list {
|
|
|
|
background-color: $background-color;
|
|
vertical-align: top;
|
|
|
|
.title {
|
|
color: $title-color;
|
|
}
|
|
|
|
ol, ul {
|
|
margin: 0 15px;
|
|
text-align: left;
|
|
color: $label-color;
|
|
}
|
|
|
|
ol {
|
|
list-style-position: inside;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.list-nostyle {
|
|
list-style: none;
|
|
}
|
|
|
|
.label {
|
|
color: $label-color;
|
|
}
|
|
|
|
.value {
|
|
float: right;
|
|
margin-left: 12px;
|
|
font-weight: 600;
|
|
color: $value-color;
|
|
}
|
|
|
|
.updated-at {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.more-info {
|
|
color: $moreinfo-color;
|
|
}
|
|
|
|
} |