Skip to content

Commit

Permalink
feat(layout): make clusterThreshold configurable (#117)
Browse files Browse the repository at this point in the history
* added clusterThreshold to options

* added clusterThreshold for docs
  • Loading branch information
HaNeul-Kim authored and Thomaash committed Sep 5, 2019
1 parent b91bc4c commit fe5eba7
Show file tree
Hide file tree
Showing 13 changed files with 1,675 additions and 1,665 deletions.
44 changes: 22 additions & 22 deletions dist/vis-network.css
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,28 @@ div.network-navigation_wrapper {
}
*/

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 Expand Up @@ -631,28 +653,6 @@ div.vis-color-picker input.vis-range-brightness {
div.vis-color-picker input.vis-saturation-range {
width: 289px !important;
}*/
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-network div.vis-navigation div.vis-button {
width:34px;
height:34px;
Expand Down
Loading

0 comments on commit fe5eba7

Please sign in to comment.