2016-02-02 18:30:40 +00:00
|
|
|
<!--<style>
|
2016-01-27 21:52:31 +00:00
|
|
|
.l-inspect .inspector-plot-options .plot-options-form .label {
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
.l-inspect .inspector-plot-options .plot-options-form .form .controls {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.l-inspect .inspector-plot-options .plot-options-form .form .label {
|
|
|
|
width: 50%;
|
|
|
|
min-width: 50px;
|
|
|
|
color: #bfbfbf;
|
|
|
|
}
|
|
|
|
.l-inspect .inspector-plot-options .plot-options-form {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
.l-inspect .inspector-plot-options .plot-options-form .form-row {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
.l-inspect .inspector-plot-options .plot-options-form .form .form-row.first {
|
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
}
|
2016-02-02 18:30:40 +00:00
|
|
|
</style>-->
|
2016-01-27 21:52:31 +00:00
|
|
|
|
2016-02-02 18:30:40 +00:00
|
|
|
<div ng-controller="PlotOptionsController" class="flex-elem grows l-inspector-part">
|
2016-02-02 21:48:17 +00:00
|
|
|
<em title="Display properties for this object">Display</em>
|
2016-01-27 21:52:31 +00:00
|
|
|
<ul class="first flex-elem grows vscroll">
|
|
|
|
<ul class="tree">
|
|
|
|
<li ng-repeat="child in children">
|
|
|
|
<span ng-controller="ToggleController as toggle">
|
|
|
|
<span ng-controller="TreeNodeController as treeNode">
|
|
|
|
<span class="tree-item menus-to-left">
|
|
|
|
<span
|
2016-02-03 01:11:39 +00:00
|
|
|
class='ui-symbol view-control flex-elem has-children'
|
|
|
|
ng-class="{ expanded: toggle.isActive() }"
|
2016-01-27 21:52:31 +00:00
|
|
|
ng-click="toggle.toggle(); treeNode.trackExpansion()">
|
|
|
|
</span>
|
|
|
|
<mct-representation
|
|
|
|
class="rep-object-label"
|
|
|
|
key="'label'"
|
|
|
|
mct-object="child">
|
|
|
|
</mct-representation>
|
|
|
|
</span>
|
|
|
|
</span>
|
2016-02-02 21:48:17 +00:00
|
|
|
<div class="plot-options-form no-validate l-controls-first">
|
2016-01-27 21:52:31 +00:00
|
|
|
<mct-form
|
|
|
|
ng-class="{hidden: !toggle.isActive()}"
|
|
|
|
ng-model="plotOptionsModel"
|
|
|
|
structure="plotOptionsStructure"
|
|
|
|
name="plotOptionsState"
|
2016-02-02 21:48:17 +00:00
|
|
|
class="flex-elem l-flex-row">
|
2016-01-27 21:52:31 +00:00
|
|
|
</mct-form>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
</div>
|