@5minds/node-red-dashboard-2-processcube-dynamic-form 1.1.2 → 2.0.0-develop-5015e2-madmxd10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,83 +43,140 @@ code {
43
43
  color: #ae0000;
44
44
  }
45
45
 
46
- .ui-dynamic-form-light {
47
- max-width: 500px;
48
- margin-left: auto;
49
- margin-right: auto;
50
- border-radius: 12px;
51
- box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.5);
52
- max-height: 90%;
46
+ .ui-dynamic-form-common {
47
+ border-radius: 8px;
53
48
  }
54
49
 
55
- .input-dark {
56
- background-color: rgba(85, 85, 85, 255);
57
- color: white !important;
50
+ .ui-dynamic-form-light {
51
+ box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.5);
58
52
  }
59
53
 
60
54
  .ui-dynamic-form-dark {
61
- max-width: 500px;
62
- margin-left: auto;
63
- margin-right: auto;
64
- border-radius: 12px;
65
55
  box-shadow: 0 4px 16px -3px rgba(255, 255, 255, 0.9);
66
56
  background-color: rgba(44, 44, 44, 255);
67
57
  color: rgba(165, 165, 165, 255);
68
- max-height: 90%;
69
58
  color-scheme: dark;
70
59
  }
71
60
 
72
61
  .ui-dynamic-form-default {
73
- max-width: 500px;
74
- margin-left: auto;
75
- margin-right: auto;
76
- border-radius: 12px;
77
- box-shadow: 0 4px 16px -3px rgb(var(--v-theme-on-group-background));
78
- background-color: rgb(var(--v-theme-group-background));
62
+ border-bottom: 4px solid rgb(var(--v-theme-primary));
63
+ box-shadow: 0px 0px 32px 0px #BABABA;
64
+ background-color: #FFF;
79
65
  color: rgb(var(--v-theme-on-group-background));
80
- max-height: 90%;
81
66
  }
82
67
 
83
- .ui-dynamic-form-footer-default {
68
+ .ui-dynamic-form-title-default {
69
+ background: linear-gradient(131deg, #18181A 26.76%, #242326 100.16%);
70
+ padding: 32px;
71
+ color: #ffffff;
72
+ font-size: 36px;
73
+ font-weight: 700;
74
+ border-radius: 8px 8px 0px 0px;
75
+ margin-top: 0px;
76
+ border: 2px solid #F6F5FA;
77
+ border-bottom: none;
78
+ }
79
+
80
+ .ui-dynamic-form-title-default hr {
81
+ border: 4px solid rgb(var(--v-theme-primary));
82
+ }
83
+
84
+ .ui-dynamic-form-title-minimal {
85
+ padding: 16px;
86
+ margin-top: 0px;
87
+ border: 2px solid #F6F5FA;
88
+ border-bottom: none;
89
+ }
90
+
91
+ .ui-dynamic-form-title-outside {
92
+ padding-bottom: 24px;
93
+ padding-top: 24px;
94
+ font-size: 24px;
95
+ font-weight: 700;
96
+ }
97
+
98
+ .ui-dynamic-form-footer-common {
84
99
  display: flex;
85
100
  flex-direction: column;
86
101
  gap: 8px;
87
- padding: 16px;
88
102
  margin: 0;
89
- border-bottom-left-radius: 12px;
90
- border-bottom-right-radius: 12px;
103
+ border-bottom-left-radius: 8px;
104
+ border-bottom-right-radius: 8px;
91
105
  }
92
106
 
107
+ .ui-dynamic-form-footer-default {}
108
+
93
109
  .ui-dynamic-form-footer-light {
94
- display: flex;
95
- flex-direction: column;
96
- gap: 8px;
97
- padding: 16px;
98
110
  background-color: rgba(249, 250, 251, 1);
99
- margin: 0;
100
- border-bottom-left-radius: 12px;
101
- border-bottom-right-radius: 12px;
102
111
  }
103
112
 
104
113
  .ui-dynamic-form-footer-dark {
105
- display: flex;
106
- flex-direction: column;
107
- gap: 8px;
108
- padding: 16px;
109
114
  background-color: rgba(35, 35, 35, 255);
110
- margin: 0;
111
- border-bottom-left-radius: 12px;
112
- border-bottom-right-radius: 12px;
115
+ }
116
+
117
+ .ui-dynamic-form-footer-action-primary {
118
+ border-radius: 8px;
119
+ background-color: rgb(var(--v-theme-primary));
120
+ padding: 8px;
121
+ }
122
+
123
+ .ui-dynamic-form-footer-action-secondary {
124
+ border-radius: 8px;
125
+ background-color: transparent !important;
126
+ border-color: rgb(var(--v-theme-primary));
127
+ border: 2px solid;
128
+ color: rgb(var(--v-theme-primary));
129
+ padding: 8px;
113
130
  }
114
131
 
115
132
  .ui-dynamic-form-wrapper {
116
133
  --fk-color-primary: rgb(var(--v-theme-primary)) !important;
117
134
  --fk-color-border: rgb(var(--v-theme-group-outline)); /* Does not work somehow */
118
- --fk-bg-input: rgb(var(--v-theme-group-background));
135
+ --fk-bg-input: #FFF;
119
136
  --fk-color-input: rgb(var(--v-theme-on-group-background));
120
137
  --fk-color-help: rgb(var(--v-theme-on-group-background));
121
138
  --fk-color-border-focus: rgb(var(--v-theme-primary));
139
+ }
140
+
141
+ .ui-dynamic-form-external-sizing-wrapper {
142
+ margin-left: 92px;
143
+ margin-right: 92px;
144
+ max-width: none;
145
+ max-height: 90%;
146
+ }
122
147
 
148
+ .cardCollapse-leave-active {
149
+ transition: max-height .5s ease, opacity .2s ease;
150
+ max-height: 100vh;
151
+ }
152
+
153
+ .cardCollapse-enter-active {
154
+ transition: max-height .2s ease, opacity .5s ease;
155
+ max-height: 100vh;
156
+ }
157
+
158
+ .cardCollapse-enter-from,
159
+ .cardCollapse-leave-to {
160
+ max-height: 0px;
161
+ opacity: 0;
162
+ }
163
+
164
+ .ui-dynamic-form-formfield-positioner {
165
+ padding: 32px;
166
+ padding-top: 0px;
167
+ max-height: 550px;
168
+ overflow-y: auto;
169
+ display: flex;
170
+ flex-wrap: wrap;
171
+ flex-direction: row;
172
+ column-gap: 20px;
173
+ border-left: 2px solid #F6F5FA;
174
+ border-right: 2px solid #F6F5FA;
175
+ border-radius: 0px 0px 6px 6px;
176
+ }
177
+
178
+ .ui-dynamic-form-formfield-positioner h1, .ui-dynamic-form-formfield-positioner h2, .ui-dynamic-form-formfield-positioner h3 {
179
+ margin: 0px;
123
180
  }
124
181
 
125
182
  .reset-background {
@@ -129,3 +186,42 @@ code {
129
186
  .custom-fieldset {
130
187
  max-width: none !important;
131
188
  }
189
+
190
+ .input-dark {
191
+ background-color: rgba(85, 85, 85, 255);
192
+ color: white !important;
193
+ }
194
+
195
+ .input-light, .input-default, .input-dark {
196
+ border-radius: 0px 0px 0px 8px;
197
+ font-size: 18px;
198
+ font-weight: 400;
199
+ font-style: normal;
200
+ padding: 4px 8px;
201
+ }
202
+
203
+ .input-light:focus, .input-dark:focus, .input-default:focus {
204
+ background-color: #F6F5FA;
205
+ border-radius: 0 8px 0px 5px;
206
+ }
207
+
208
+ .ui-dynamic-form-input-outlines {
209
+ box-shadow: none !important;
210
+ border-radius: 0px 0px 0px 8px;
211
+ border-bottom: 2px solid rgb(var(--v-theme-primary));
212
+ border-left: 2px solid rgb(var(--v-theme-primary));
213
+ padding-bottom: 2px;
214
+ }
215
+
216
+ .ui-dynamic-form-input-outlines:focus-within {
217
+ transition: padding-bottom 0.1s ease-in-out, border-width 0.1s ease-in-out;
218
+ border-width: 4px;
219
+ padding-bottom: 0px;
220
+ }
221
+
222
+ .ui-dynamic-form-input-label {
223
+ font-size: 18px;
224
+ font-weight: 400;
225
+ font-style: normal;
226
+ padding-bottom: 16px;
227
+ }