Graph.sass 1.32 KB
Newer Older
1 2 3
@mixin sidePanelCommon
  position: absolute
  max-height: 600px
4
  //overflow-y: scroll
5
  top: 170px
6
  //z-index: 1
7

8 9 10 11 12 13 14 15
#graph-explorer
  #toolbar
    display: flex
    flex-direction: column

    ul
      display: flex
      flex-direction: row
16
      margin: 0
17 18 19
      li
        display: flex
        max-width: 200px
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  #toggle-container
    position: absolute
    z-index: 999 // needs to appear above solid menu bar
    right: 15px
    top: 10px
    width: 70%

  #controls-container
    position: absolute
    z-index: 999 // needs to appear above graph elements
    backdrop-filter: blur(4px)
    background: rgba(255,255,255,75%)
    overflow: auto
    left: 0
    right: 0
36 37

  .graph-tree
38
    @include sidePanelCommon
39 40
    background-color: #fff
    z-index: 1
41

42 43 44
  #graph-view
    height: 95%

45
  #sp-container
46
    @include sidePanelCommon
47 48
    border: 1px white solid
    background-color: white
49
    left: 70%
50
    width: 28%
51 52 53 54 55 56 57 58

    #myTab
      marginBottom: 18px
      marginTop: 18px

    #myTabContent
      borderBottom: 1px solid black
      paddingBottom : 19px
59 60 61 62 63

    #horizontal-checkbox
      ul
        display: inline
        float : left
64 65 66

  #tree
    position: absolute
67
    z-index: 1
68 69 70 71 72 73 74 75 76

.input-with-autocomplete
  .completions
    position: absolute
    max-height: 300px
    overflow-y: scroll
    width: 300px
    top: 50px
    z-index: 5