hashicorp-copywrite[bot] 5fb9df1640
[COMPLIANCE] License changes (#18443)
* Adding explicit MPL license for sub-package

This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository.

* Adding explicit MPL license for sub-package

This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository.

* Updating the license from MPL to Business Source License

Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl.

* add missing license headers

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

* Update copyright file headers to BUSL-1.1

---------

Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-11 09:12:13 -04:00

72 lines
1.4 KiB
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
#metrics-container div .sparkline-wrapper {
position: relative;
width: 100%;
padding: 0;
margin: 0;
height: 70px;
svg.sparkline {
width: 100%;
height: 70px;
padding: 0;
margin: 0;
}
.tooltip {
visibility: hidden;
position: absolute;
z-index: 10;
bottom: 78px;
width: 217px;
}
.sparkline-tt-legend-color {
display: inline-block;
}
// extra padding for the status sub-component that's not needed for the stats
// status
.topology-metrics-error,
.topology-metrics-loader {
padding-top: 15px;
}
}
// Key modal
.sparkline-key {
.sparkline-key-content {
width: 500px;
min-height: 100px;
dl {
padding: 10px 0 0 0;
}
dt {
width: 125px;
float: left;
}
dd {
margin: 0 0 12px 135px;
}
}
}
.sparkline-key-link {
visibility: hidden;
float: right;
// TODO: this is a massive hack but we want it to be actually outside of the
// bounding box of this component. We could move it into the parent component
// but it's pretty tied up to the state - should only show if we have metrics
// loaded etc. I expect there is a cleaner way to refactor this though.
margin-top: -35px;
margin-right: 12px;
}
#metrics-container:hover .sparkline-key-link {
visibility: visible;
}