forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditForm.html
More file actions
125 lines (102 loc) · 3.09 KB
/
Copy pathEditForm.html
File metadata and controls
125 lines (102 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!-- <style>
body {
padding-top: 0px;
}
</style>
-->
<section>
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">name</label>
<div class="col-sm-4">
<input ng-model="ctrl.model.name" class="form-control input-md" ng-disabled="ctrl.loading==true" />
<button ng-click="ctrl.Save()" type="button" ng-disabled="ctrl.loading==true" class="btn btn-success "
translate lib="web">save</button>
</div>
</div>
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">fbeditor</label>
<div class="col-sm-4">
<input type="checkbox" ng-model="ctrl.model.fbeditor" class="input-md" ng-change="ctrl.renderform()"
ng-disabled="ctrl.loading==true" />
</div>
</div>
</section>
<div id="fb-editor" ng-show="ctrl.model.fbeditor==true">
</div>
<div ng-show="ctrl.model.fbeditor!=true">
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">Wizard</label>
<div class="col-sm-4">
<input type="checkbox" ng-model="ctrl.model.wizard" class="input-md" ng-change="ctrl.renderform()"
ng-disabled="ctrl.loading==true" />
</div>
</div>
</div>
<link rel='stylesheet' href='bootstrap.css'>
<style>
.dark-mode .formio-dialog-content {
background-color: var(--dm-card-bg-color) !important;
}
.dark-mode .formio-dialog {
color: unset !important;
}
.dark-mode .table {
color: unset !important;
}
.dark-mode .ace_editor {
background-color: var(--dm-card-bg-color) !important;
}
.dark-mode .ace_gutter {
background-color: var(--dm-card-bg-color) !important;
color: unset !important;
}
.dark-mode .ace-xcode {
color: unset !important;
}
.dark-mode .choices__inner {
background-color: unset !important;
}
.dark-mode .choices__input {
background-color: unset !important;
}
.dark-mode .list-group-item {
background-color: unset !important;
}
/* .formio-dialog-content {
background: unset !important;
} */
/* .formbuilder {
min-width: 900px;
} */
/* .builder-sidebar {
width: 130px;
} */
.builder-group-button {
text-align: left !important;
}
.builder-sidebar_scroll {
position: sticky !important;
top: 15px !important;
}
.builder-sidebar {
width: 130px !important;
}
.form-builder-panel {
margin: unset !important;
padding: unset !important;
}
.form-builder-panel .btn {
padding: unset !important;
}
.form-builder-panel .formcomponent {
line-height: unset !important;
margin-top: 1px !important;
padding: unset !important;
}
</style>
<p>
<hr>
</p>
<div ng-show="ctrl.errormessage != ''"" class=" alert alert-danger" role="alert">{{ctrl.errormessage}}</div>
<div id="builder" ng-show="ctrl.model.fbeditor==false">
</div>