2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
8 http://www.apache.org/licenses/LICENSE-2.0
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
17 <div id="page-content" class="content" style="padding: 25px;">
33 background-color: $melon;
37 text-transform: uppercase;
65 border: 1px solid black;
66 display: inline-block;
70 text-transform: capitalize;
78 <h1 class="heading-page">Modify Blueprint Instance</h1>
81 <div class="form-row">
82 <label for="textinputID-3a">Select Blueprint
83 Instance: </label> <select
84 ng-model="selectedBlueprintInstance"
85 ng-change="selectedBlueprintInstanceChange()"
86 ng-options="v for v in declerativeInsts">
90 <br> <label for="textinputID-3a">Old layers: </label>
92 <li ng-repeat="oldLayer in oldLayers" class="li-layer">
97 <div ng-show="loadingBlueprintInstances || loadingLayers">
98 <img src=" static/fusion/images/giphy.gif" />
101 <div ng-if="selectedBlueprintInstance">
102 <label for="textinputID-3a">New Layers: </label>
104 <div class="form-row">
105 <label for="textinputID-3a">Add Layer: </label> <select
106 ng-model="selectedLayer"
107 ng-change="selectedLayerChange()"
108 ng-options="v for v in layers">
110 <button ng-disabled="!selectedLayer"
111 ng-click="addConfiguredLayer(selectedLayer)">Add</button>
116 <ul class="ul-layer">
117 <li ng-repeat="configuredLayer in configuredLayers"
118 class="li-layer"><span
119 ng-click="deleteConfiguredLayer($index)"><i
120 class="fa fa-close"></i></span> {{configuredLayer}}</li>
123 <div class="fn-ebz-container"
124 style="position: relative; top: 25px;">
125 <button href="javascript:void(0)" id="addbtn"
126 style="bottom: -17px;" size="small"
127 att-accessibility-click="13,32"
128 class="btn btn-alt btn-small" ng-click="modify();">Modify</button>