123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <style>
- .tree-control .tree-input {
- min-height: 34px!important;
- padding-top: 5px;
- }
-
- .tree-control .tree-view .item-container:hover,
- .tree-control .tree-view .selected,
- .tree-control .tree-view .active {
- background-color: #428bca;
- background-image: linear-gradient(#428bca, #428bca)!important;
- background: #428bca;
- color: #fff;
- }
-
- .tree-control .tree-view .item-container:hover .expand,
- .tree-control .tree-view .selected .expand,
- .tree-control .tree-view .active .expand {
- border-left: 10px solid #fff;
- }
-
- .tree-control .tree-view .item-container:hover .expand-opened,
- .tree-control .tree-view .selected .expand-opened,
- .tree-control .tree-view .active .expand-opened {
- border-bottom: 0px solid transparent;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 10px solid #fff;
- }
- </style>
- <form ng-submit="vm.submit(vm.model,cifilter_classic,templateitem,'gray')">
- <tabset ng-class="{backborder:vm.tabs}" class="">
- <tab ng-repeat="tab in vm.tabs" heading="{{tab.title}}" active="tab.active" disable="tab.disabled">
- <formly-form model="tab.form.model" fields="tab.form.fields" form="vm.form" options="tab.form.options" class="col-xs-12" style="height:400px;overflow: auto;margin-top: 30px;">
- </formly-form>
- <!-- <div class="padding-top-15 padding-bottom-15 center">
- <button type="submit" ladda="ldloading.gray" ng-disabled="!vm.form.$$parentForm.$valid" class="btn btn-primary"><span translate="form.button.SUBMIT">Submit</span></button>
- <button type="close" class=" btn btn-primary" ng-click="closeModel()" translate="form.button.CLOSE">CLOSE </button>
- </div> -->
- </tab>
- </tabset>
- </form>
|