Update js/rus/rus.js
Browse files- js/rus/rus.js +0 -109
js/rus/rus.js
CHANGED
@@ -315,115 +315,6 @@ editor.Blocks.add('avp_form_v1-settings-block-block', {
|
|
315 |
content: { type: 'avp_form_v1-settings-block' },
|
316 |
category: 'Автопилот - ВК', // Добавляем категорию "Автопилот - ВК"
|
317 |
});
|
318 |
-
// Создаем блок стилей_form
|
319 |
-
editor.CssComposer.addRules(`
|
320 |
-
#containerForm {
|
321 |
-
width: 100%;
|
322 |
-
max-width: 600px;
|
323 |
-
margin: 0 auto;
|
324 |
-
padding: 20px;
|
325 |
-
background-color: #f5faff;
|
326 |
-
border-radius: 8px;
|
327 |
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
328 |
-
}
|
329 |
-
|
330 |
-
#containerForm .header-section {
|
331 |
-
text-align: center;
|
332 |
-
margin-bottom: 20px;
|
333 |
-
}
|
334 |
-
|
335 |
-
#containerForm .circle-image {
|
336 |
-
display: inline-block;
|
337 |
-
border-radius: 50%;
|
338 |
-
overflow: hidden;
|
339 |
-
width: 150px;
|
340 |
-
height: 150px;
|
341 |
-
margin-bottom: 10px;
|
342 |
-
}
|
343 |
-
|
344 |
-
#containerForm .circle-image img {
|
345 |
-
width: 100%;
|
346 |
-
height: 100%;
|
347 |
-
object-fit: cover;
|
348 |
-
}
|
349 |
-
|
350 |
-
#containerForm .form-group {
|
351 |
-
margin-bottom: 20px;
|
352 |
-
}
|
353 |
-
|
354 |
-
#containerForm .form-group label {
|
355 |
-
display: block;
|
356 |
-
margin-bottom: 5px;
|
357 |
-
font-weight: bold;
|
358 |
-
color: #333;
|
359 |
-
}
|
360 |
-
|
361 |
-
#containerForm .form-group input,
|
362 |
-
#containerForm .form-group select,
|
363 |
-
#containerForm .form-group textarea {
|
364 |
-
width: 100%;
|
365 |
-
padding: 10px;
|
366 |
-
border: 1px solid #ccc;
|
367 |
-
border-radius: 4px;
|
368 |
-
font-size: 16px;
|
369 |
-
}
|
370 |
-
|
371 |
-
#containerForm .radio-check {
|
372 |
-
margin-bottom: 15px;
|
373 |
-
display: flex;
|
374 |
-
align-items: center;
|
375 |
-
}
|
376 |
-
|
377 |
-
#containerForm .checkbox-check {
|
378 |
-
margin-bottom: 15px;
|
379 |
-
display: flex;
|
380 |
-
align-items: center;
|
381 |
-
}
|
382 |
-
|
383 |
-
#containerForm .radio-check input[type="radio"],
|
384 |
-
#containerForm .checkbox-check input[type="checkbox"] {
|
385 |
-
margin-right: 10px;
|
386 |
-
width: 15px;
|
387 |
-
}
|
388 |
-
|
389 |
-
#containerForm .radio-check label,
|
390 |
-
#containerForm .checkbox-check label {
|
391 |
-
font-size: 14px;
|
392 |
-
color: #555;
|
393 |
-
}
|
394 |
-
|
395 |
-
#containerForm .btn-primary {
|
396 |
-
display: inline-flex;
|
397 |
-
margin: 10px;
|
398 |
-
text-decoration: none;
|
399 |
-
position: relative;
|
400 |
-
font-size: 20px;
|
401 |
-
line-height: 20px;
|
402 |
-
padding: 12px 30px;
|
403 |
-
color: #FFF;
|
404 |
-
font-weight: bold;
|
405 |
-
text-transform: uppercase;
|
406 |
-
font-family: 'Roboto', Тahoma, sans-serif;
|
407 |
-
background: #337AB7;
|
408 |
-
cursor: pointer;
|
409 |
-
border: 2px solid #BFE2FF;
|
410 |
-
outline: 1px solid;
|
411 |
-
outline-color: #337AB7;
|
412 |
-
outline-offset: 0px;
|
413 |
-
text-shadow: none;
|
414 |
-
transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
|
415 |
-
}
|
416 |
-
|
417 |
-
#containerForm .btn-primary:hover,
|
418 |
-
#containerForm .btn-primary:active,
|
419 |
-
#containerForm .btn-primary:focus {
|
420 |
-
box-shadow: inset 0 0 20px #BFE2FF;
|
421 |
-
outline-color: rgba(255, 255, 255, 0);
|
422 |
-
outline-offset: 15px;
|
423 |
-
color: #FFF;
|
424 |
-
}
|
425 |
-
|
426 |
-
`);
|
427 |
|
428 |
|
429 |
|
|
|
315 |
content: { type: 'avp_form_v1-settings-block' },
|
316 |
category: 'Автопилот - ВК', // Добавляем категорию "Автопилот - ВК"
|
317 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
|
319 |
|
320 |
|