@@ -606,7 +606,8 @@ func (pw *PageWriter) Done() {
606
606
border-radius: 5px ;
607
607
background-color: lightgrey ;
608
608
margin-right: 2px ;
609
- font-family: menlo ;
609
+ font-family: menlo ;
610
+ font-size: 16px ;
610
611
}
611
612
612
613
.spc {
@@ -631,7 +632,7 @@ func (pw *PageWriter) Done() {
631
632
// background-color: lightsteelblue ; // #e7eff7 ;
632
633
color: black ;
633
634
// font-weight: bold ;
634
- font-family: menlo ;
635
+ font-family: menlo ;
635
636
font-size: medium ;
636
637
overflow: hidden ;
637
638
line-height: 10px ;
@@ -663,7 +664,7 @@ func (pw *PageWriter) Done() {
663
664
<div id=buttonList>
664
665
` + filters + `
665
666
` + inlines + `
666
- `+ apply + `
667
+ `+ apply + `
667
668
</div>
668
669
<div style="height:12px"></div> <!-- buffer for "Commmit:" line -->
669
670
<div id=commit><a target=_blank
@@ -712,6 +713,10 @@ function apply() {
712
713
713
714
function toggleExp(elem, exp) {
714
715
if ( !elem ) {
716
+ elem = document.getElementById("expAll")
717
+ exp = (elem.show == true)
718
+ elem.show = !exp
719
+ elem.innerHTML = (exp ? '` + HTML_MIN + `' : '` + HTML_EXP + `')
715
720
for ( var i = 1 ;; i++ ) {
716
721
elem = document.getElementById("s"+i)
717
722
if ( !elem ) return false
@@ -755,8 +760,7 @@ function dokeydown(event) {
755
760
<b>Path:</b> ` + urlPath + `
756
761
</div>
757
762
<div id=myOutput tabindex=0 onkeydown=dokeydown(event)><div class=expandAll>
758
- <span class=expandBtn title="Collapse all" onclick=toggleExp(null,false)>` + HTML_MIN + `</span>
759
- <span class=expandBtn title="Expand all" onclick=toggleExp(null,true)>` + HTML_EXP + `</span>
763
+ <span id=expAll class=expandBtn title="Collapse/Expand all" onclick=toggleExp(null,false)>` + HTML_MIN + `</span>
760
764
</div><div id='text'>%s</div></div> <!--myOutput-->
761
765
</div> <!--right-->
762
766
0 commit comments