@@ -532,6 +532,8 @@ export default class OscdSupervision extends LitElement {
532
532
this . selectedIedSubscribedCBRefs . length }
533
533
data- ln= "${ identity ( lN ) } "
534
534
value = "${ identity ( lN ) } "
535
+ title = "${ supervisionPath ( lN ) }
536
+ ${ description ?? '' } "
535
537
>
536
538
<span> ${ supervisionPath ( lN ) } </ span>
537
539
${ description || invalidControlBlock || notSubscribedControlBlock
@@ -569,6 +571,8 @@ export default class OscdSupervision extends LitElement {
569
571
graphic = "icon"
570
572
data- ln= "${ identity ( lN ) } "
571
573
value= "${ identity ( lN ) } "
574
+ title= "${ supervisionPath ( lN ) }
575
+ ${ description || '' } "
572
576
>
573
577
<span> ${ supervisionPath ( lN ) } </ span>
574
578
${ description
@@ -746,7 +750,7 @@ export default class OscdSupervision extends LitElement {
746
750
if ( usedSupervisions . length === 0 )
747
751
return html `<h3> No supervision nodes used </ h3> ` ;
748
752
749
- return html `<mwc- lis t class= "column mlist" >
753
+ return html `<mwc- lis t class= "column mlist suplist " >
750
754
${ usedSupervisions . map (
751
755
lN => html `${ this . renderSupervisionListItem ( lN , false ) } `
752
756
) }
@@ -840,6 +844,8 @@ export default class OscdSupervision extends LitElement {
840
844
?twoline= ${ ! ! pathDescription || ! ! datasetName }
841
845
data- control= "${ identity ( controlElement ) } "
842
846
value = "${ pathName } "
847
+ title= "${ pathName }
848
+ ${ secondLineDesc } "
843
849
>
844
850
<span> ${ pathName } </ span>
845
851
<span slot= "secondary" > ${ secondLineDesc } </ span>
@@ -852,7 +858,7 @@ export default class OscdSupervision extends LitElement {
852
858
private renderUsedControls ( ) : TemplateResult {
853
859
if ( ! this . selectedIed ) return html `` ;
854
860
855
- return html `<mwc- lis t class= "column mlist" >
861
+ return html `<mwc- lis t class= "column mlist conlist " >
856
862
${ this . getSelectedIedSupLNs ( true , false ) . map ( lN => {
857
863
const cbRef = getSupervisionCBRef ( lN ) ;
858
864
@@ -942,6 +948,7 @@ export default class OscdSupervision extends LitElement {
942
948
private renderUnusedControlList ( ) : TemplateResult {
943
949
return html `<oscd- filtered- lis t
944
950
id= "unusedControls"
951
+ class = "conlis t"
945
952
@selected = ${ ( ev : SingleSelectedEvent ) => {
946
953
const selectedListItem = ( < ListItemBase > (
947
954
( < OscdFilteredList > ev . target ) . selected
@@ -1022,7 +1029,7 @@ export default class OscdSupervision extends LitElement {
1022
1029
1023
1030
private renderUnusedSupervisionList ( ) : TemplateResult {
1024
1031
return html `<div class= "filteredList" >
1025
- <div class= "searchField mitem sup-ln" >
1032
+ <div class= "searchField mitem sup-ln suplist " >
1026
1033
<abbr title= "Search"
1027
1034
> <mwc- textfield
1028
1035
id= "filterUnusedSupervisionInput"
@@ -1431,6 +1438,11 @@ export default class OscdSupervision extends LitElement {
1431
1438
flex-direction : column;
1432
1439
}
1433
1440
1441
+ .conlist ,
1442
+ .suplist {
1443
+ overflow : hidden;
1444
+ }
1445
+
1434
1446
# createNewLN {
1435
1447
float : right;
1436
1448
}
0 commit comments