2016-02-08 15:41:00 +01:00
|
|
|
/*! Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-07-15 13:39:22 +02:00
|
|
|
|
2015-11-12 16:33:54 +01:00
|
|
|
table.historycolorgrid {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid th {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin: 0.5em;
|
|
|
|
font-size: 0.55em;
|
2015-11-13 13:57:09 +01:00
|
|
|
font-weight: bold;
|
2015-11-12 16:33:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid td {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid td:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid td.weekday {
|
|
|
|
font-size: 0.55em;
|
2015-11-13 13:57:09 +01:00
|
|
|
font-weight: bold;
|
2015-11-12 16:33:54 +01:00
|
|
|
width: 2.5em;
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid a, table.historycolorgrid span {
|
2015-11-13 13:57:09 +01:00
|
|
|
.rounded-corners(0.2em);
|
2015-11-12 16:33:54 +01:00
|
|
|
margin: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
2015-11-13 13:57:09 +01:00
|
|
|
width: 1.1em;
|
|
|
|
height: 1.1em;
|
2015-11-12 16:33:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table.historycolorgrid a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-06-05 17:16:03 +02:00
|
|
|
table.multiselect tr[href] td {
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
}
|
|
|
|
|
2015-04-17 10:05:48 +02:00
|
|
|
#main div.filter {
|
|
|
|
form.editor {
|
|
|
|
input[type=text], select {
|
|
|
|
width: 12em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li.active {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.buttons {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2014-06-20 12:33:37 +02:00
|
|
|
}
|
|
|
|
|
2014-06-20 12:32:19 +02:00
|
|
|
ul.tree select { /* ?? */
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree, ul.tree ul {
|
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree ul {
|
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li {
|
|
|
|
margin: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
position: relative;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li .handle {
|
2014-08-28 16:15:51 +02:00
|
|
|
background-image: url('../img/tree/tree-minus.gif');
|
2014-06-20 12:32:19 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
width: 1em;
|
|
|
|
height: 2em;
|
|
|
|
left: -0.6em;
|
|
|
|
background-position: -3px 3px;
|
|
|
|
z-index: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li.collapsed > .handle {
|
2014-08-28 16:15:51 +02:00
|
|
|
background-image: url('../img/tree/tree-plus.gif');
|
2014-06-20 12:32:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li.collapsed > ul {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li::before, ul.tree li::after {
|
|
|
|
content: '';
|
2014-08-28 16:15:51 +02:00
|
|
|
position: absolute;
|
2014-06-20 12:32:19 +02:00
|
|
|
right: auto;
|
|
|
|
left: -0.2em;
|
2016-01-25 08:50:37 +01:00
|
|
|
border-color: @gray-light;
|
2014-06-20 12:32:19 +02:00
|
|
|
border-style: dotted;
|
|
|
|
border-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the left vertical line */
|
|
|
|
ul.tree li::before {
|
|
|
|
border-left-width: 1px;
|
|
|
|
top: 0;
|
2014-08-28 16:15:51 +02:00
|
|
|
width: 1em;
|
2014-06-20 12:32:19 +02:00
|
|
|
height: 100%;
|
|
|
|
bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the horizontal dash in front of each item */
|
|
|
|
ul.tree li::after {
|
|
|
|
border-top-width: 1px;
|
|
|
|
top: 1em;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stop left vertical line at "mid-height" after last nodes (at each level) */
|
|
|
|
ul.tree li:last-child::before {
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No border for the root element - there must be only ONE root */
|
|
|
|
ul.tree > li::before, ul.tree > li::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No connector before (each) root element */
|
|
|
|
ul.tree > ul > li::before, ul.tree > ul > li::after {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li a {
|
|
|
|
display: inline-block;
|
2015-11-13 09:44:50 +01:00
|
|
|
padding-left: 1em;
|
2014-06-20 12:32:19 +02:00
|
|
|
line-height: 2em;
|
|
|
|
text-decoration: none;
|
2016-01-25 08:50:37 +01:00
|
|
|
color: @gray;
|
2014-06-20 12:32:19 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0.8em 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li a.error {
|
2016-01-25 08:50:37 +01:00
|
|
|
color: @color-critical-handled;
|
2014-06-20 12:32:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li a:hover {
|
2016-01-25 08:50:37 +01:00
|
|
|
color: @text-color;
|
2014-06-20 12:32:19 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tree li a.error:hover {
|
2016-01-25 08:50:37 +01:00
|
|
|
color: @color-critical;
|
2014-06-20 12:32:19 +02:00
|
|
|
}
|
2014-08-27 14:00:01 +02:00
|
|
|
|
2014-09-08 16:25:11 +02:00
|
|
|
/* Add hover effect to chart data */
|
|
|
|
.chart-data:hover {
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
|
2014-08-27 14:00:01 +02:00
|
|
|
/* charts should grow as much as possible but never beyond the current viewport's size */
|
2014-08-28 16:52:02 +02:00
|
|
|
.svg-container-responsive {
|
|
|
|
padding: 1.5em;
|
|
|
|
height: 80vh;
|
2014-08-27 14:00:01 +02:00
|
|
|
}
|
2014-09-05 17:57:20 +02:00
|
|
|
|
2015-03-05 18:32:38 +01:00
|
|
|
.tipsy .tipsy-inner {
|
|
|
|
// overwrite tooltip max width, we need them to grow bigger
|
2015-11-12 22:29:45 +01:00
|
|
|
font-family: @font-family;
|
|
|
|
font-size: @font-size-small;
|
2015-03-05 18:32:38 +01:00
|
|
|
max-width: 300px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-08-24 12:36:35 +02:00
|
|
|
.progress-label span {
|
|
|
|
font-size: 1.5em;
|
|
|
|
.animate(blink 1.4s infinite both);
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
animation-delay: .2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
animation-delay: .4s;
|
|
|
|
}
|
|
|
|
}
|