Skip to content

Commit

Permalink
fix(deps): update (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomaash committed Aug 31, 2019
1 parent 70192f9 commit 0d6d420
Show file tree
Hide file tree
Showing 8 changed files with 6,296 additions and 4,338 deletions.
132 changes: 66 additions & 66 deletions dist/vis.css
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,35 @@
cursor: 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;
Expand Down Expand Up @@ -403,35 +432,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-panel {
position: absolute;

Expand Down Expand Up @@ -757,21 +757,6 @@
transform: rotate(-90deg);
}

.vis .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

/* Must be displayed above for example selected Timeline items */
z-index: 10;
}

.vis-active {
box-shadow: 0 0 10px #86d5f8;
}

div.vis-configuration {
position:relative;
display:block;
Expand Down Expand Up @@ -1075,6 +1060,43 @@ input.vis-configuration.vis-config-range:focus::-ms-fill-upper {
box-shadow: 0 0 10px #86d5f8;
}

.vis .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

/* Must be displayed above for example selected Timeline items */
z-index: 10;
}

.vis-active {
box-shadow: 0 0 10px #86d5f8;
}

div.vis-tooltip {
position: absolute;
visibility: hidden;
padding: 5px;
white-space: nowrap;

font-family: verdana;
font-size:14px;
color:#000000;
background-color: #f5f4ed;

-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #808074;

box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
pointer-events: none;

z-index: 5;
}

div.vis-configuration {
position:relative;
display:block;
Expand Down Expand Up @@ -1537,28 +1559,6 @@ div.vis-tooltip {
z-index: 5;
}

div.vis-tooltip {
position: absolute;
visibility: hidden;
padding: 5px;
white-space: nowrap;

font-family: verdana;
font-size:14px;
color:#000000;
background-color: #f5f4ed;

-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #808074;

box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
pointer-events: none;

z-index: 5;
}


div.vis-color-picker {
position:absolute;
Expand Down
Loading

0 comments on commit 0d6d420

Please sign in to comment.