mirror of
https://github.com/nasa/openmct.git
synced 2025-01-07 13:48:42 +00:00
13 lines
456 B
HTML
13 lines
456 B
HTML
|
<!-- TO-DO: make legend item color-swatch dynamic -->
|
||
|
<span
|
||
|
class="legend-item s-legend-item"
|
||
|
title="{{ngModel.path}}{{ngModel.domainObject.getModel().name}}"
|
||
|
>
|
||
|
<span class="color-swatch"
|
||
|
ng-style="{ 'background-color': ngModel.color() }">
|
||
|
</span>
|
||
|
<span class="title-label">
|
||
|
<span class="l-parent-path">{{ngModel.path}}</span>
|
||
|
<span class="l-leaf-title">{{ngModel.domainObject.getModel().name}}</span>
|
||
|
</span>
|
||
|
</span>
|