summaryrefslogtreecommitdiffstats
path: root/feature-session-persistence/.gitignore
blob: b83d22266ac8aa2f8df2edef68082c789727841d (plain)
1
/target/
{ color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
<!--
  ~ Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->
 
 
<div data-ng-class="{'w-sdc-modal': type===undefined, 'w-sdc-classic-modal': type==='classic'}">
    <div class="w-sdc-modal-head">
        <span data-ng-if="header" class="w-sdc-modal-head-text">{{header}}</span>
        <span data-ng-if="headerTranslate" class="w-sdc-modal-head-text" translate="{{headerTranslate}}" translate-values="{{headerTranslateValues}}"></span>
        <div data-ng-if="showCloseButton==='true'" class="w-sdc-modal-close" data-ng-click="cancel()"></div>
    </div>
    <div class="w-sdc-modal-body" data-ng-class="{'classic': type==='classic'}">
        <ng-transclude></ng-transclude>
    </div>
    <div class="w-sdc-modal-footer" data-ng-if="type==='classic' && buttons!==undefined">
        <button data-ng-repeat="button in buttons"
                data-tests-id="{{button.name}}"
                class="tlv-btn {{button.css}}"
                data-ng-class="{'disabled': button.disabled===true}"
                data-ng-disabled="button.disabled===true"
                data-ng-click="button.callback()">{{button.name}}</button>
    </div>
</div>