icingadb-web/public/css/widget/quick-actions.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

50 lines
848 B
Text

// SPDX-FileCopyrightText: 2020 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
.quick-actions {
display: flex;
flex-wrap: wrap;
list-style-type: none;
margin: 0 -.5em;
padding: 0;
a {
text-decoration: none;
}
a,
button {
padding: .25em;
.rounded-corners();
display: inline-flex;
align-items: baseline;
&:hover {
background: @gray-lighter;
}
}
li {
margin: 0 .25em .5em .25em;
vertical-align: middle;
white-space: nowrap;
}
}
.controls:not(.default-layout) > .quick-actions:last-child,
.controls > .quick-actions:last-child {
margin-bottom: 0;
}
#layout.twocols:not(.wide-layout) {
.quick-actions {
justify-content: space-between;
min-width: 100%;
}
}
#layout.wide-layout .controls {
.quick-actions {
float: left;
}
}