3
0
Fork 0

Update vis-timeline-graph2d lib: 7.3.4 -> 7.7.0

14.0
Alexis de Lattre 2022-08-02 22:58:19 +02:00
parent 3dfcbcffb9
commit 848c647994
2 changed files with 26397 additions and 18278 deletions

View File

@ -5,6 +5,35 @@
width: auto;
}
.vis-current-time {
background-color: #FF7F6E;
width: 2px;
z-index: 1;
pointer-events: none;
}
.vis-rolling-mode-btn {
height: 40px;
width: 40px;
position: absolute;
top: 7px;
right: 20px;
border-radius: 50%;
font-size: 28px;
cursor: pointer;
opacity: 0.8;
color: white;
font-weight: bold;
text-align: center;
background: #3876c2;
}
.vis-rolling-mode-btn:before {
content: "\26F6";
}
.vis-rolling-mode-btn:hover {
opacity: 1;
}
.vis-timeline {
/*
-webkit-transition: height .4s ease-in-out;
@ -38,52 +67,6 @@
transition: height .4s ease-in-out, top .4s ease-in-out;
}
/**/
.vis-current-time {
background-color: #FF7F6E;
width: 2px;
z-index: 1;
pointer-events: none;
}
.vis-rolling-mode-btn {
height: 40px;
width: 40px;
position: absolute;
top: 7px;
right: 20px;
border-radius: 50%;
font-size: 28px;
cursor: pointer;
opacity: 0.8;
color: white;
font-weight: bold;
text-align: center;
background: #3876c2;
}
.vis-rolling-mode-btn:before {
content: "\26F6";
}
.vis-rolling-mode-btn:hover {
opacity: 1;
}
.vis-timeline {
position: relative;
border: 1px solid #bfbfbf;
overflow: hidden;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.vis-loading-screen {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.vis-panel {
position: absolute;
@ -272,6 +255,23 @@
stroke: none;
}
.vis-timeline {
position: relative;
border: 1px solid #bfbfbf;
overflow: hidden;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.vis-loading-screen {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.vis-custom-time {
background-color: #6E94FF;
width: 2px;
@ -393,6 +393,50 @@
display: inline-block
}
.vis-labelset {
position: relative;
overflow: hidden;
box-sizing: border-box;
}
.vis-labelset .vis-label {
position: relative;
left: 0;
top: 0;
width: 100%;
color: #4d4d4d;
box-sizing: border-box;
}
.vis-labelset .vis-label {
border-bottom: 1px solid #bfbfbf;
}
.vis-labelset .vis-label.draggable {
cursor: pointer;
}
.vis-group-is-dragging {
background: rgba(0, 0, 0, .1);
}
.vis-labelset .vis-label:last-child {
border-bottom: none;
}
.vis-labelset .vis-label .vis-inner {
display: inline-block;
padding: 5px;
}
.vis-labelset .vis-label .vis-inner.vis-hidden {
padding: 0;
}
.vis-itemset {
position: relative;
padding: 0;
@ -571,50 +615,6 @@
height: 100%;
z-index: 10;
}
.vis-labelset {
position: relative;
overflow: hidden;
box-sizing: border-box;
}
.vis-labelset .vis-label {
position: relative;
left: 0;
top: 0;
width: 100%;
color: #4d4d4d;
box-sizing: border-box;
}
.vis-labelset .vis-label {
border-bottom: 1px solid #bfbfbf;
}
.vis-labelset .vis-label.draggable {
cursor: pointer;
}
.vis-group-is-dragging {
background: rgba(0, 0, 0, .1);
}
.vis-labelset .vis-label:last-child {
border-bottom: none;
}
.vis-labelset .vis-label .vis-inner {
display: inline-block;
padding: 5px;
}
.vis-labelset .vis-label .vis-inner.vis-hidden {
padding: 0;
}
.vis-time-axis {
position: relative;
overflow: hidden;

File diff suppressed because one or more lines are too long