Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Mar 21, 2022
2 parents 7c003ca + 3be4a3e commit d31396d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
11 changes: 9 additions & 2 deletions pyhdx/web/jinja_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
model: '<div class="sidebar-contents">{% for doc in docs %}{% for root in doc.roots %}{% if "nav" in root.tags %} {{ embed(root) }} {% endif %}{% endfor %}{% endfor %}</div>',
width: 350,
},
width: 20,
isClosable: false
},
$main_body
Expand All @@ -84,7 +83,15 @@
],
settings: {
showPopoutIcon: false
}
},
dimensions: {
borderWidth: 5,
minItemHeight: 10,
minItemWidth: 10,
headerHeight: 35,
dragProxyWidth: 300,
dragProxyHeight: 200
},
};

var myLayout = new GoldenLayout(config, $$('#main-content'));
Expand Down
20 changes: 19 additions & 1 deletion pyhdx/web/static/extendedgoldentemplate/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,32 @@

.lm_header .lm_tab {
background-color: #efefef;
padding-top: 3px;
padding-bottom: 4px !important;
height: 30px !important;
line-height: 28px;
font-size: 17px;
}

.lm_header .lm_tab.lm_active {
padding-top: 0px;
border-top: 3px #52BDEC solid;
background-color: #ffffff;
padding-bottom: 5px !important;
padding-bottom: 3px !important;
}

.lm_header {
background-color: white;
}

/* works but shows up briefly */
.lm_splitter {
background: #116E8A;
opacity: .001;
transition: opacity 1000ms ease
}

.lm_splitter:hover {
opacity: 1;
background: #00407A !important;
}

0 comments on commit d31396d

Please sign in to comment.