Graph.sass 1003 Bytes
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 16 17 18
#graph-explorer
  #toolbar
    display: flex
    flex-direction: column

    ul
      display: flex
      flex-direction: row
      li
        display: flex
        max-width: 200px
19

20 21 22 23
  .row.controls
    height: 79px

  .graph-tree
24
    @include sidePanelCommon
25 26
    background-color: #fff
    z-index: 1
27

28 29 30
  #graph-view
    height: 95%

31
  #sp-container
32
    @include sidePanelCommon
33 34
    border: 1px white solid
    background-color: white
35
    left: 70%
36
    width: 28%
37 38 39 40 41 42 43 44

    #myTab
      marginBottom: 18px
      marginTop: 18px

    #myTabContent
      borderBottom: 1px solid black
      paddingBottom : 19px
45 46 47 48 49

    #horizontal-checkbox
      ul
        display: inline
        float : left
50 51 52

  #tree
    position: absolute
53
    z-index: 1
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