indexnew.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <style>
  2. .tree-control .tree-input{min-height: 34px!important;padding-top: 5px;}
  3. .tree-control .tree-view .item-container:hover,
  4. .tree-control .tree-view .selected,
  5. .tree-control .tree-view .active{
  6. background-color: #428bca;
  7. background-image: linear-gradient(#428bca,#428bca)!important;
  8. background: #428bca;
  9. color: #fff;
  10. }
  11. .tree-control .tree-view .item-container:hover .expand,
  12. .tree-control .tree-view .selected .expand,
  13. .tree-control .tree-view .active .expand{
  14. border-left: 10px solid #fff;
  15. }
  16. .tree-control .tree-view .item-container:hover .expand-opened,
  17. .tree-control .tree-view .selected .expand-opened,
  18. .tree-control .tree-view .active .expand-opened{
  19. border-bottom: 0px solid transparent;
  20. border-left: 6px solid transparent;
  21. border-right: 6px solid transparent;
  22. border-top: 10px solid #fff;
  23. }
  24. </style>
  25. <div ng-controller="CustomformCtrl">
  26. <!--{{title}}-->
  27. <form ng-submit="vm.submit(vm.model,'sm')" >
  28. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length">
  29. <div></div>
  30. <div class="col-xs-12 margin-top-30 margin-bottom-30">
  31. <button type="submit" ladda="ldloading.sm" class="col-md-offset-10 btn btn-primary ladda-button" translate="form.button.SUBMIT">Submit</button>
  32. <button type="button" ladda="ldloading.sm" class="margin-left-5 btn btn-default ladda-button" ng-click="vm.options.resetModel()" translate="form.button.RESET">Reset</button>
  33. </div>
  34. </formly-form>
  35. </form>
  36. </div>