CSS: Add styles for quick actions

refs #13187

Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
This commit is contained in:
Florian Strohmaier 2016-11-09 17:36:59 +01:00 committed by Eric Lippmann
parent cea9f5aea1
commit 4a254f5b33
1 changed files with 25 additions and 0 deletions

View File

@ -108,6 +108,31 @@
}
}
// Quick actions
.quick-actions {
ul {
// Center horizontally
display: table;
margin: 0 auto;
}
li {
border-right: 1px solid fade(@icinga-blue, 50%);
color: @icinga-blue;
padding: 0 0.6em;
}
li:last-child {
border-right: none;
padding-right: 0;
}
li i {
font-size: 1.2em;
vertical-align: middle;
}
}
/* Generic box element */
.boxview > div.box {