ui-cmdbform.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <style>
  2. .tree-control .tree-input {
  3. min-height: 34px!important;
  4. padding-top: 5px;
  5. }
  6. .tree-control .tree-view .item-container:hover,
  7. .tree-control .tree-view .selected,
  8. .tree-control .tree-view .active {
  9. background-color: #428bca;
  10. background-image: linear-gradient(#428bca, #428bca)!important;
  11. background: #428bca;
  12. color: #fff;
  13. }
  14. .tree-control .tree-view .item-container:hover .expand,
  15. .tree-control .tree-view .selected .expand,
  16. .tree-control .tree-view .active .expand {
  17. border-left: 10px solid #fff;
  18. }
  19. .tree-control .tree-view .item-container:hover .expand-opened,
  20. .tree-control .tree-view .selected .expand-opened,
  21. .tree-control .tree-view .active .expand-opened {
  22. border-bottom: 0px solid transparent;
  23. border-left: 6px solid transparent;
  24. border-right: 6px solid transparent;
  25. border-top: 10px solid #fff;
  26. }
  27. </style>
  28. <form ng-submit="vm.submit(vm.model,cifilter_classic,templateitem,'gray')">
  29. <tabset ng-class="{backborder:vm.tabs}" class="">
  30. <tab ng-repeat="tab in vm.tabs" heading="{{tab.title}}" active="tab.active" disable="tab.disabled">
  31. <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;">
  32. </formly-form>
  33. <!-- <div class="padding-top-15 padding-bottom-15 center">
  34. <button type="submit" ladda="ldloading.gray" ng-disabled="!vm.form.$$parentForm.$valid" class="btn btn-primary"><span translate="form.button.SUBMIT">Submit</span></button>
  35. <button type="close" class=" btn btn-primary" ng-click="closeModel()" translate="form.button.CLOSE">CLOSE </button>
  36. </div> -->
  37. </tab>
  38. </tabset>
  39. </form>