File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 3333 border-right : 1px solid grey ;
3434 display : flex ;
3535 flex-direction : column ;
36+ max-width : 20em ;
3637 }
3738 .tree {
3839 margin-top : 1em ;
Original file line number Diff line number Diff line change 2020
2121<div class =" tv_node" >
2222 <span on:click ={toggleExpanded }>
23- <Fa icon ={expanded ? faChevronDown : faChevronRight } style =" width: 0.9em" />
24- {node .title }
23+ <Fa icon ={expanded ? faChevronDown : faChevronRight } style =" width: 0.9em; margin-right: 0.5em" />
24+ <span >
25+ {node .title }
26+ </span >
2527 </span >
2628 {#if expanded }
2729 {#each node .datasets as child (child .title )}
4042 }
4143 div .tv_node > span {
4244 cursor : pointer ;
45+ display : flex ;
46+ align-items : center ;
4347 }
4448 </style >
Original file line number Diff line number Diff line change 2424 title =" click to toggle the visibility of this dataset"
2525 uk-tooltip =" pos: right"
2626>
27- <Fa icon ={selected ? faEye : faEyeSlash } {color } style =" width: 1em" />
28- {node .title }
27+ <Fa icon ={selected ? faEye : faEyeSlash } {color } style =" width: 1em; margin-right: 0.5em" />
28+ <span >
29+ {node .title }
30+ </span >
2931</div >
3032
3133<style >
3436 cursor : pointer ;
3537 opacity : 0.8 ;
3638 transition : opacity 0.125s ease-in-out ;
39+ display : flex ;
40+ align-items : center ;
3741 }
3842 div .tv_node.selected {
3943 opacity : 1 ;
You can’t perform that action at this time.
0 commit comments