Skip to content

Commit d31396d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7c003ca + 3be4a3e commit d31396d

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

pyhdx/web/jinja_base.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
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>',
7676
width: 350,
7777
},
78-
width: 20,
7978
isClosable: false
8079
},
8180
$main_body
@@ -84,7 +83,15 @@
8483
],
8584
settings: {
8685
showPopoutIcon: false
87-
}
86+
},
87+
dimensions: {
88+
borderWidth: 5,
89+
minItemHeight: 10,
90+
minItemWidth: 10,
91+
headerHeight: 35,
92+
dragProxyWidth: 300,
93+
dragProxyHeight: 200
94+
},
8895
};
8996

9097
var myLayout = new GoldenLayout(config, $$('#main-content'));

pyhdx/web/static/extendedgoldentemplate/default.css

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,32 @@
1414

1515
.lm_header .lm_tab {
1616
background-color: #efefef;
17+
padding-top: 3px;
1718
padding-bottom: 4px !important;
19+
height: 30px !important;
20+
line-height: 28px;
21+
font-size: 17px;
1822
}
1923

2024
.lm_header .lm_tab.lm_active {
25+
padding-top: 0px;
26+
border-top: 3px #52BDEC solid;
2127
background-color: #ffffff;
22-
padding-bottom: 5px !important;
28+
padding-bottom: 3px !important;
2329
}
2430

2531
.lm_header {
2632
background-color: white;
2733
}
34+
35+
/* works but shows up briefly */
36+
.lm_splitter {
37+
background: #116E8A;
38+
opacity: .001;
39+
transition: opacity 1000ms ease
40+
}
41+
42+
.lm_splitter:hover {
43+
opacity: 1;
44+
background: #00407A !important;
45+
}

0 commit comments

Comments
 (0)