icingadb-web/public/css/widget/object-statistics.less
Eric Lippmann 272e791390 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 14:03:05 +01:00

47 lines
801 B
Text

// SPDX-FileCopyrightText: 2020 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
ul.object-statistics {
// Reset defaults
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
> li:not(:last-child) {
margin-right: 1em;
}
}
.object-statistics-graph .donut-graph {
height: 2em;
width: 2em;
vertical-align: middle;
}
.object-statistics-total a {
display: inline-block;
line-height: 1;
position: relative;
&:hover:before {
.rounded-corners();
background-color: @gray-lighter;
content: "";
display: block;
z-index: 1;
position: absolute;
bottom: -.4em;
left: -.4em;
top: -.4em;
right: -.4em;
}
.vertical-key-value {
position: relative;
z-index: 2;
}
}