mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-04 17:03:33 -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.
50 lines
848 B
Text
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;
|
|
}
|
|
}
|