Graph.css 1.15 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#graph-explorer #toolbar {
  display: flex;
  flex-direction: column;
}
#graph-explorer #toolbar ul {
  display: flex;
  flex-direction: row;
}
#graph-explorer #toolbar ul li {
  display: flex;
  max-width: 200px;
}
13 14 15 16 17 18 19
#graph-explorer .row.controls {
  height: 79px;
}
#graph-explorer .graph-tree {
  position: absolute;
  max-height: 600px;
  overflow-y: scroll;
20
  top: 170px;
21 22
  z-index: 1;
}
23 24 25
#graph-explorer #graph-view {
  height: 95%;
}
26
#graph-explorer #sp-container {
27
  position: absolute;
28 29
  max-height: 600px;
  overflow-y: scroll;
30
  top: 170px;
31
  z-index: 1;
32 33
  border: 1px white solid;
  background-color: white;
34 35
  left: 70%;
  width: 30%;
36 37 38 39 40 41 42 43 44
}
#graph-explorer #sp-container #myTab {
  marginBottom: 18px;
  marginTop: 18px;
}
#graph-explorer #sp-container #myTabContent {
  borderBottom: 1px solid black;
  paddingBottom: 19px;
}
45 46 47 48
#graph-explorer #sp-container #horizontal-checkbox ul {
  display: inline;
  float: left;
}
49 50
#graph-explorer #tree {
  position: absolute;
51
  z-index: 1;
52
}
53

54 55 56 57 58 59 60 61 62
.input-with-autocomplete .completions {
  position: absolute;
  max-height: 300px;
  overflow-y: scroll;
  width: 300px;
  top: 50px;
  z-index: 5;
}

63
/*# sourceMappingURL=Graph.css.map */