isite 2022.8.3 → 2022.8.6
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/README.md +7 -7
- package/apps/client-side/app.js +255 -182
- package/apps/client-side/site_files/css/bootstrap5-addon.css +87 -4
- package/apps/client-side/site_files/css/bootstrap5.css +1 -1
- package/apps/client-side/site_files/css/bootstrap5.css.map +1 -0
- package/apps/client-side/site_files/css/dropdown.css +22 -4
- package/apps/client-side/site_files/css/effect.css +342 -283
- package/apps/client-side/site_files/css/images.css +10 -7
- package/apps/client-side/site_files/css/layout.css +37 -44
- package/apps/client-side/site_files/css/modal.css +1 -1
- package/apps/client-side/site_files/css/normalize.css +146 -0
- package/apps/client-side/site_files/css/scrollbar.css +9 -5
- package/apps/client-side/site_files/css/table.css +3 -3
- package/apps/client-side/site_files/html/directive/i-button.html +5 -0
- package/apps/client-side/site_files/html/directive/i-checkbox.html +4 -0
- package/apps/client-side/site_files/html/directive/i-checklist.html +6 -0
- package/apps/client-side/site_files/html/directive/i-control.html +5 -0
- package/apps/client-side/site_files/html/directive/i-date.html +24 -0
- package/apps/client-side/site_files/html/directive/i-datetime.html +31 -0
- package/apps/client-side/site_files/html/{sub/i-file.content.html → directive/i-file.html} +3 -5
- package/apps/client-side/site_files/html/directive/i-image.html +7 -0
- package/apps/client-side/site_files/html/directive/i-list.html +20 -0
- package/apps/client-side/site_files/html/directive/i-radio.html +4 -0
- package/apps/client-side/site_files/html/directive/i-textarea.html +4 -0
- package/apps/client-side/site_files/html/directive/i-treenode.html +20 -0
- package/apps/client-side/site_files/html/directive/i-treeview.html +13 -0
- package/apps/client-side/site_files/html/directive/i-upload.html +5 -0
- package/apps/client-side/site_files/html/directive-core/i-date.html +64 -0
- package/apps/client-side/site_files/html/directive-core/i-list.html +22 -0
- package/apps/client-side/site_files/images/no.jpg +0 -0
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +278 -998
- package/apps/client-side/site_files/js/bootstrap.js.map +1 -0
- package/apps/client-side/site_files/js/directive.js +1865 -2044
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +19 -3
- package/apps/security/site_files/html/login_modal.html +18 -26
- package/index.js +277 -278
- package/isite_files/images/no.jpg +0 -0
- package/lib/cookie.js +3 -5
- package/lib/email.js +108 -0
- package/lib/integrated.js +10 -26
- package/lib/parser.js +519 -509
- package/lib/routing.js +23 -15
- package/lib/security.js +1109 -1081
- package/lib/sessions.js +182 -247
- package/object-options/index.js +24 -4
- package/object-options/lib/fn.js +6 -3
- package/package.json +5 -3
- package/pull.bat +3 -0
- package/push.bat +2 -5
- package/apps/client-side/site_files/html/sub/i-date2.content.html +0 -64
- package/apps/client-side/site_files/html/sub/i-list.content.html +0 -31
- package/apps/client-side/site_files/html/sub/i-list2.content.html +0 -22
|
@@ -49,15 +49,33 @@
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.dropdown-item {
|
|
52
|
+
display: inline-block;
|
|
52
53
|
cursor: pointer;
|
|
53
54
|
background: var(--dropdown-background);
|
|
55
|
+
padding: 0px;
|
|
56
|
+
margin: 0px;
|
|
57
|
+
transition: all .1s ease;
|
|
54
58
|
}
|
|
55
59
|
.dropdown-item p {
|
|
56
|
-
color:
|
|
57
|
-
font-size:
|
|
60
|
+
color: #055160;
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
font-weight: bold;
|
|
58
63
|
background: transparent;
|
|
64
|
+
text-align: left;
|
|
65
|
+
}
|
|
66
|
+
.ar .dropdown-item p{
|
|
67
|
+
text-align: right;
|
|
59
68
|
}
|
|
60
69
|
.dropdown-item small {
|
|
61
|
-
color:
|
|
62
|
-
font-size:
|
|
70
|
+
color: antiquewhite;
|
|
71
|
+
font-size: 9px;
|
|
72
|
+
text-align: left;
|
|
73
|
+
padding: 3px;
|
|
74
|
+
background: #198754;
|
|
75
|
+
font-weight: bold;
|
|
76
|
+
padding-right: 9px;
|
|
77
|
+
padding-left: 9px;
|
|
78
|
+
}
|
|
79
|
+
.ar .dropdown-item small{
|
|
80
|
+
text-align: right;
|
|
63
81
|
}
|
|
@@ -1,285 +1,344 @@
|
|
|
1
1
|
@media all {
|
|
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
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
.
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
2
|
+
.flex,
|
|
3
|
+
.display-flex {
|
|
4
|
+
display: flex !important;
|
|
5
|
+
}
|
|
6
|
+
.inline-flex,
|
|
7
|
+
.display-inline-flex {
|
|
8
|
+
display: inline-flex !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.flexbox,
|
|
12
|
+
.display-flexbox {
|
|
13
|
+
display: flexbox !important;
|
|
14
|
+
}
|
|
15
|
+
.flexbox,
|
|
16
|
+
.display-flexbox {
|
|
17
|
+
display: inline-flexbox !important;
|
|
18
|
+
}
|
|
19
|
+
.block,
|
|
20
|
+
.display-block {
|
|
21
|
+
display: block !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.none,
|
|
25
|
+
.display-none {
|
|
26
|
+
display: none !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.inline,
|
|
30
|
+
.display-inline {
|
|
31
|
+
display: inline !important;
|
|
32
|
+
}
|
|
33
|
+
.inline-block,
|
|
34
|
+
.display-inline-block {
|
|
35
|
+
display: inline-block !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.inline-grid,
|
|
39
|
+
.display-inline-grid {
|
|
40
|
+
display: inline-grid !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fixed,
|
|
44
|
+
.position-fixed {
|
|
45
|
+
position: fixed !important;
|
|
46
|
+
}
|
|
47
|
+
.relative,
|
|
48
|
+
.position-relative {
|
|
49
|
+
position: relative !important;
|
|
50
|
+
}
|
|
51
|
+
.static,
|
|
52
|
+
.position-static {
|
|
53
|
+
position: static !important;
|
|
54
|
+
}
|
|
55
|
+
.sticky,
|
|
56
|
+
.position-sticky {
|
|
57
|
+
position: sticky !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.left,
|
|
61
|
+
.float-left {
|
|
62
|
+
float: left !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.right,
|
|
66
|
+
.float-right {
|
|
67
|
+
float: right !important;
|
|
68
|
+
}
|
|
69
|
+
.float-none {
|
|
70
|
+
float: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text-center {
|
|
74
|
+
text-align: center !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.text-left {
|
|
78
|
+
text-align: left !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.text-right {
|
|
82
|
+
text-align: right !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.pointer {
|
|
86
|
+
cursor: pointer !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.bold {
|
|
90
|
+
font-weight: bold;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.italic {
|
|
94
|
+
font-style: italic;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.center,
|
|
98
|
+
.center p,
|
|
99
|
+
.center span,
|
|
100
|
+
.center label,
|
|
101
|
+
.center b,
|
|
102
|
+
.center i,
|
|
103
|
+
.center img {
|
|
104
|
+
margin: 0 auto !important;
|
|
105
|
+
text-align: center !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.center i.center {
|
|
109
|
+
vertical-align: text-bottom;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.border {
|
|
113
|
+
border: 1px solid var(--theme-color) !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.dashed {
|
|
117
|
+
border: 2px dashed var(--theme-color) !important;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.no-border {
|
|
121
|
+
border: none !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.no-border-left {
|
|
125
|
+
border-left: none !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.no-border-right {
|
|
129
|
+
border-right: none !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.no-border-top {
|
|
133
|
+
border-top: none !important;
|
|
134
|
+
}
|
|
135
|
+
.no-border-bottom {
|
|
136
|
+
border-bottom: none !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.no-border-radius {
|
|
140
|
+
border-radius: 0px !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.border-radius {
|
|
144
|
+
border-radius: 5px !important;
|
|
145
|
+
}
|
|
146
|
+
.margin {
|
|
147
|
+
margin: 5px !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.padding {
|
|
151
|
+
padding: 5px !important;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.text-shadow {
|
|
155
|
+
text-shadow: 1px 1px 1px #000 !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.box-shadow {
|
|
159
|
+
box-shadow: 1px 1px 8px 2px #000 !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.font-small {
|
|
163
|
+
font-size: small !important;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.font-smaller {
|
|
167
|
+
font-size: smaller !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.font-x-small {
|
|
171
|
+
font-size: x-small !important;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.font-xx-small {
|
|
175
|
+
font-size: xx-small !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.font-medium {
|
|
179
|
+
font-size: medium !important;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.font-large {
|
|
183
|
+
font-size: large !important;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.font-larger {
|
|
187
|
+
font-size: larger !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.font-x-large {
|
|
191
|
+
font-size: x-large !important;
|
|
192
|
+
}
|
|
193
|
+
.font-xx-large {
|
|
194
|
+
font-size: xx-large !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.rtl {
|
|
198
|
+
direction: rtl;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.ltr {
|
|
202
|
+
direction: ltr;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.height-auto{
|
|
206
|
+
height: auto !important;
|
|
207
|
+
};
|
|
208
|
+
.width-auto{
|
|
209
|
+
height: auto !important;
|
|
210
|
+
};
|
|
211
|
+
.error {
|
|
212
|
+
text-align: center;
|
|
213
|
+
color: red;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.appearance-none {
|
|
217
|
+
-moz-appearance: none;
|
|
218
|
+
-webkit-appearance: none;
|
|
219
|
+
appearance: none;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.paper {
|
|
223
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0, 0, 0, 0.15), 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0, 0, 0, 0.15);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.full-width {
|
|
227
|
+
width: 100%;
|
|
228
|
+
margin: 0px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.hover-scale:hover {
|
|
232
|
+
transform: scale(1.1);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.multi-lines {
|
|
236
|
+
white-space: pre-wrap;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.ww {
|
|
240
|
+
width: 250px !important;
|
|
241
|
+
white-space: pre-line !important;
|
|
242
|
+
}
|
|
243
|
+
.w0 {
|
|
244
|
+
width: 1px !important;
|
|
245
|
+
white-space: nowrap !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.w50,
|
|
249
|
+
.w50 input {
|
|
250
|
+
min-width: 50px !important;
|
|
251
|
+
width: 50px !important;
|
|
252
|
+
white-space: pre-line !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.w100,
|
|
256
|
+
.w100 input {
|
|
257
|
+
width: 100px !important;
|
|
258
|
+
min-width: 100px !important;
|
|
259
|
+
white-space: pre-line !important;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.w125,
|
|
263
|
+
.w125 input {
|
|
264
|
+
width: 125px !important;
|
|
265
|
+
min-width: 125px !important;
|
|
266
|
+
white-space: pre-line !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.w150,
|
|
270
|
+
.w150 input {
|
|
271
|
+
width: 150px !important;
|
|
272
|
+
min-width: 150px !important;
|
|
273
|
+
white-space: pre-line !important;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.w175,
|
|
277
|
+
.w175 input {
|
|
278
|
+
width: 175px !important;
|
|
279
|
+
min-width: 175px !important;
|
|
280
|
+
white-space: pre-line !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.w200,
|
|
284
|
+
.w200 input {
|
|
285
|
+
width: 200px !important;
|
|
286
|
+
min-width: 200px !important;
|
|
287
|
+
white-space: pre-line !important;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.w225,
|
|
291
|
+
.w225 input {
|
|
292
|
+
width: 225px !important;
|
|
293
|
+
min-width: 225px !important;
|
|
294
|
+
white-space: pre-line !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.w250,
|
|
298
|
+
.w250 input {
|
|
299
|
+
width: 250px !important;
|
|
300
|
+
min-width: 250px !important;
|
|
301
|
+
white-space: pre-line !important;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.w275,
|
|
305
|
+
.w275 input {
|
|
306
|
+
width: 275px !important;
|
|
307
|
+
min-width: 275px !important;
|
|
308
|
+
white-space: pre-line !important;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.w300,
|
|
312
|
+
.w300 input {
|
|
313
|
+
width: 300px !important;
|
|
314
|
+
min-width: 300px !important;
|
|
315
|
+
white-space: pre-line !important;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.w350,
|
|
319
|
+
.w350 input {
|
|
320
|
+
width: 350px !important;
|
|
321
|
+
min-width: 350px !important;
|
|
322
|
+
white-space: pre-line !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.w400,
|
|
326
|
+
.w400 input {
|
|
327
|
+
width: 400px !important;
|
|
328
|
+
min-width: 400px !important;
|
|
329
|
+
white-space: pre-line !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.w450,
|
|
333
|
+
.w450 input {
|
|
334
|
+
width: 450px !important;
|
|
335
|
+
min-width: 450px !important;
|
|
336
|
+
white-space: pre-line !important;
|
|
337
|
+
}
|
|
338
|
+
.w500,
|
|
339
|
+
.w500 input {
|
|
340
|
+
width: 500px !important;
|
|
341
|
+
min-width: 500px !important;
|
|
342
|
+
white-space: pre-line !important;
|
|
343
|
+
}
|
|
285
344
|
}
|