isite 2021.11.24 → 2021.11.31
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.
- package/apps/client-side/site_files/css/checkbox.css +0 -2
- package/apps/client-side/site_files/css/form.css +27 -32
- package/apps/client-side/site_files/css/theme.css +1 -1
- package/apps/client-side/site_files/css/theme_paper.css +1 -1
- package/lib/mongodb.js +6 -3
- package/object-options/index.js +1 -1
- package/package.json +1 -1
|
@@ -114,11 +114,9 @@ i-checkbox .selector.un-selected .fa{
|
|
|
114
114
|
i-checkbox .selector.selected {
|
|
115
115
|
background: #ffffff;
|
|
116
116
|
color: #ffffff;
|
|
117
|
-
border: 4px solid #000000;
|
|
118
117
|
background: #118011;
|
|
119
118
|
}
|
|
120
119
|
i-checkbox .selector.un-selected {
|
|
121
120
|
background: #aaa;
|
|
122
121
|
color: #fff;
|
|
123
|
-
border: 5px solid #bbb;
|
|
124
122
|
}
|
|
@@ -4,7 +4,7 @@ form {
|
|
|
4
4
|
margin: 0 auto;
|
|
5
5
|
padding: 5px;
|
|
6
6
|
color: var(--form-color);
|
|
7
|
-
background-color: var(--form-background-color)
|
|
7
|
+
background-color: var(--form-background-color);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.control {
|
|
@@ -18,23 +18,24 @@ form {
|
|
|
18
18
|
form label,
|
|
19
19
|
form span,
|
|
20
20
|
form p {
|
|
21
|
-
color: var(--form-color)
|
|
21
|
+
color: var(--form-color);
|
|
22
|
+
}
|
|
23
|
+
p {
|
|
24
|
+
word-break: break-all;
|
|
22
25
|
}
|
|
23
|
-
|
|
24
26
|
label {
|
|
25
27
|
font-weight: var(--label-font-weight);
|
|
26
28
|
color: var(--label-color);
|
|
27
29
|
font-size: var(--label-font-size);
|
|
28
30
|
margin: 5px;
|
|
29
31
|
margin-bottom: 10px !important;
|
|
32
|
+
word-break: break-all;
|
|
30
33
|
}
|
|
31
34
|
|
|
32
|
-
|
|
33
35
|
label span {
|
|
34
36
|
color: var(--form-color);
|
|
35
37
|
}
|
|
36
38
|
|
|
37
|
-
|
|
38
39
|
textarea {
|
|
39
40
|
overflow-x: hidden;
|
|
40
41
|
}
|
|
@@ -54,9 +55,9 @@ textarea {
|
|
|
54
55
|
color: var(--input-color);
|
|
55
56
|
background-color: var(--input-background-color);
|
|
56
57
|
background-image: none;
|
|
57
|
-
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
|
58
|
-
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
59
|
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
58
|
+
-webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
|
|
59
|
+
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
60
|
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
60
61
|
border-radius: var(--input-border-radius);
|
|
61
62
|
border-width: var(--input-border-width);
|
|
62
63
|
border-color: var(--input-border-color);
|
|
@@ -66,7 +67,6 @@ textarea {
|
|
|
66
67
|
-ms-scrollbar-arrow-color: var(--input-color);
|
|
67
68
|
}
|
|
68
69
|
|
|
69
|
-
|
|
70
70
|
select {
|
|
71
71
|
font-size: var(--select-font-size);
|
|
72
72
|
height: var(--select-height);
|
|
@@ -78,30 +78,28 @@ select {
|
|
|
78
78
|
-ms-progress-appearance: var(--select-appearance);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
|
|
82
81
|
textarea {
|
|
83
82
|
border-width: var(--textarea-border-width);
|
|
84
83
|
}
|
|
85
84
|
|
|
86
|
-
|
|
87
|
-
input[type=
|
|
88
|
-
input[type=radio] {
|
|
85
|
+
input[type='checkbox'],
|
|
86
|
+
input[type='radio'] {
|
|
89
87
|
-webkit-box-shadow: none;
|
|
90
88
|
box-shadow: none;
|
|
91
89
|
}
|
|
92
90
|
|
|
93
|
-
input[type=file] {
|
|
91
|
+
input[type='file'] {
|
|
94
92
|
padding: 3px;
|
|
95
93
|
}
|
|
96
94
|
|
|
97
|
-
input[type=date],
|
|
98
|
-
input[type=datetime],
|
|
99
|
-
input[type=datetime-local] {
|
|
95
|
+
input[type='date'],
|
|
96
|
+
input[type='datetime'],
|
|
97
|
+
input[type='datetime-local'] {
|
|
100
98
|
padding: 5px;
|
|
101
99
|
}
|
|
102
100
|
|
|
103
|
-
input[type=number],
|
|
104
|
-
input[type=date] {
|
|
101
|
+
input[type='number'],
|
|
102
|
+
input[type='date'] {
|
|
105
103
|
text-align: center;
|
|
106
104
|
}
|
|
107
105
|
|
|
@@ -115,14 +113,14 @@ input[type=date] {
|
|
|
115
113
|
text-align: var(--label-text-align);
|
|
116
114
|
}
|
|
117
115
|
|
|
118
|
-
.control input[type=text],
|
|
119
|
-
.control input[type=email],
|
|
120
|
-
.control input[type=number],
|
|
121
|
-
.control input[type=password],
|
|
122
|
-
.control input[type=file],
|
|
123
|
-
.control input[type=date],
|
|
124
|
-
.control input[type=datetime],
|
|
125
|
-
.control input[type=datetime-local],
|
|
116
|
+
.control input[type='text'],
|
|
117
|
+
.control input[type='email'],
|
|
118
|
+
.control input[type='number'],
|
|
119
|
+
.control input[type='password'],
|
|
120
|
+
.control input[type='file'],
|
|
121
|
+
.control input[type='date'],
|
|
122
|
+
.control input[type='datetime'],
|
|
123
|
+
.control input[type='datetime-local'],
|
|
126
124
|
.control textarea,
|
|
127
125
|
.control label,
|
|
128
126
|
.control select {
|
|
@@ -137,8 +135,6 @@ textarea:focus {
|
|
|
137
135
|
border-color: var(--input-focus-border-color);
|
|
138
136
|
}
|
|
139
137
|
|
|
140
|
-
|
|
141
|
-
|
|
142
138
|
fieldset {
|
|
143
139
|
padding: 4px;
|
|
144
140
|
margin: 0px;
|
|
@@ -156,7 +152,6 @@ fieldset legend {
|
|
|
156
152
|
border: var(--legend-border);
|
|
157
153
|
}
|
|
158
154
|
|
|
159
|
-
|
|
160
155
|
.files {
|
|
161
156
|
border: 2px dashed var(--modal-header-background-color);
|
|
162
157
|
padding: 5px;
|
|
@@ -185,7 +180,7 @@ fieldset legend {
|
|
|
185
180
|
font-size: 16px;
|
|
186
181
|
color: #000;
|
|
187
182
|
}
|
|
188
|
-
.i-date2 .fa{
|
|
183
|
+
.i-date2 .fa {
|
|
189
184
|
font-size: 18px;
|
|
190
185
|
cursor: pointer;
|
|
191
|
-
}
|
|
186
|
+
}
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
--modal-background : rgba(0,0,0,0.6);
|
|
114
114
|
--modal-content-background: #607D8B;
|
|
115
115
|
--modal-content-border: none;
|
|
116
|
-
--modal-color: #
|
|
116
|
+
--modal-color: #000;
|
|
117
117
|
--modal-animation-name: animatetop;
|
|
118
118
|
--modal-animation-duration: 0.4s;
|
|
119
119
|
--modal-header-color: #000000;
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
--modal-background: var(--theme-color);
|
|
143
143
|
--modal-content-background: #ffffff;
|
|
144
144
|
--modal-content-border: 3px solid var(--theme-color);
|
|
145
|
-
--modal-color: #
|
|
145
|
+
--modal-color: #000;
|
|
146
146
|
--modal-animation-name: animateleft;
|
|
147
147
|
--modal-animation-duration: 0.4s;
|
|
148
148
|
--modal-header-color: #fff;
|
package/lib/mongodb.js
CHANGED
|
@@ -110,6 +110,7 @@ module.exports = function init(____0) {
|
|
|
110
110
|
|
|
111
111
|
let db_name = ____0.options.mongodb.prefix.db + name;
|
|
112
112
|
let db_url = _mongo.connection;
|
|
113
|
+
____0.log('\n ( Connecting DB : ' + db_url + ' ) \n');
|
|
113
114
|
_mongo.client.connect(
|
|
114
115
|
db_url,
|
|
115
116
|
{
|
|
@@ -125,14 +126,16 @@ module.exports = function init(____0) {
|
|
|
125
126
|
|
|
126
127
|
_mongo.connections.push({
|
|
127
128
|
name: name,
|
|
129
|
+
url : db_url,
|
|
128
130
|
db: db,
|
|
129
131
|
client: client,
|
|
130
132
|
connected: !0,
|
|
131
133
|
});
|
|
132
|
-
|
|
134
|
+
____0.log('\n ( Connected DB : ' + db_name + ' ) : ' + db_url + '\n');
|
|
133
135
|
callback(err, db);
|
|
134
136
|
} else {
|
|
135
137
|
err.message += ' , ' + db_url;
|
|
138
|
+
____0.log('\n ( Connected DB Error: ' + err.message + ' ) \n');
|
|
136
139
|
callback(err, null);
|
|
137
140
|
}
|
|
138
141
|
_mongo.connectDBBusy = !1;
|
|
@@ -307,11 +310,11 @@ module.exports = function init(____0) {
|
|
|
307
310
|
docs: obj.docs,
|
|
308
311
|
});
|
|
309
312
|
} else {
|
|
310
|
-
|
|
313
|
+
console.log(err.message);
|
|
311
314
|
}
|
|
312
315
|
});
|
|
313
316
|
} else {
|
|
314
|
-
|
|
317
|
+
console.log(err.message);
|
|
315
318
|
}
|
|
316
319
|
});
|
|
317
320
|
};
|
package/object-options/index.js
CHANGED