icingadb-web/public/css/widget/custom-var-table.less
Johannes Meyer b8c33d6a32
Some checks failed
L10n Update / update (push) Has been cancelled
PHP Tests / Static analysis for php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.4 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.4 on ubuntu-latest (push) Has been cancelled
Require Icinga Web 2.12 as minimum now
We were somewhat *compatible* with 2.9. Though, our packages
never allowed to install Icinga Web < 2.12 together with
Icinga DB Web >= 1.2. The latter requires PHP 8.2 as a minimum
and only Icinga Web 2.12 is compatible with it. It's now time
to hard require Icinga Web 2.12, althoug you might argue that
we should have done that already with v1.2…
2025-11-17 15:46:00 +01:00

59 lines
781 B
Text

.custom-var-table {
.level-1 th {
padding-left: .5em;
}
.level-2 th {
padding-left: 1em;
}
.level-3 th {
padding-left: 1.5em;
}
.level-4 th {
padding-left: 2em;
}
.level-5 th {
padding-left: 2.5em;
}
.level-6 th {
padding-left: 3em;
}
thead th {
padding-left: 0;
text-align: left;
font-weight: bold;
font-size: 1.167em;
> span {
:nth-child(1),
:nth-child(2) {
display: none;
}
}
}
&[data-can-collapse] thead th > span {
:nth-child(1) {
display: none;
}
:nth-child(2) {
display: inline-block;
}
}
&.collapsed thead th > span {
:nth-child(1) {
display: inline-block;
}
:nth-child(2) {
display: none;
}
}
}