mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-23 13:54:26 +02:00
Show a horizontal line when the timeline switches its context
refs #4190
This commit is contained in:
parent
80b4e3bf33
commit
2049e42988
@ -23,6 +23,9 @@ $firstRow = !$beingExtended;
|
|||||||
<div class="content" data-base-target="_next">
|
<div class="content" data-base-target="_next">
|
||||||
<div class="timeline">
|
<div class="timeline">
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
<?php if ($switchedContext): ?>
|
||||||
|
<hr>
|
||||||
|
<?php endif ?>
|
||||||
<?php foreach ($timeline as $timeInfo): ?>
|
<?php foreach ($timeline as $timeInfo): ?>
|
||||||
<div class="timeframe">
|
<div class="timeframe">
|
||||||
<span>
|
<span>
|
||||||
|
@ -724,6 +724,16 @@ div.timeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: 0;
|
||||||
|
height: 1px;
|
||||||
|
background-image: linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
|
||||||
|
background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
|
||||||
|
background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
|
||||||
|
background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
|
||||||
|
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* End of monitoring timeline styles */
|
/* End of monitoring timeline styles */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user