mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
25 lines
533 B
Text
25 lines
533 B
Text
// SPDX-FileCopyrightText: 2025 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
.hostgroup {
|
|
&.table-row.item-layout {
|
|
> .col:has(.object-statistics) {
|
|
align-content: center; // Actually, not sure why this works… .col is not a grid container
|
|
}
|
|
|
|
> .main > .caption {
|
|
height: auto;
|
|
.text-ellipsis();
|
|
.line-clamp("reset");
|
|
}
|
|
}
|
|
|
|
&.header-item-layout > .main {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
|
|
> header {
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|