Display a timeline on the dashboard (#1290)

* Timeline data model

* Display timeline

* …

* More events

* Plugin support

* Fix docs typo
This commit is contained in:
Raphael Michel
2019-05-17 17:32:38 +02:00
committed by GitHub
parent ecc9c7f39f
commit c6b18b31a1
8 changed files with 331 additions and 2 deletions

View File

@@ -618,3 +618,30 @@ h1 .label {
border-radius: $border-radius-small;
box-shadow: 0 7px 14px 0 rgba(78, 50, 92, 0.1),0 3px 6px 0 rgba(0,0,0,.07);
}
.timeline {
.col-date {
position: relative;
min-height: 1px;
padding-left: 15px;
width: 120px;
float: left;
}
.col-event {
position: relative;
min-height: 1px;
padding-right: 15px;
margin-left: 120px;
}
}
@media(max-width: $screen-sm-max) {
.timeline {
.col-date {
width: 100%;
float: none;
}
.col-event {
margin-left: 0;
}
}
}