jodit 3.14.2 → 3.14.3
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/.idea/workspace.xml +21 -28
- package/build/jodit.css +3 -3
- package/build/jodit.es2018.css +2 -2
- package/build/jodit.es2018.en.css +2 -2
- package/build/jodit.es2018.en.js +4737 -4737
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +4737 -4737
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +13949 -13949
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/build/vdom.css +1 -1736
- package/build/vdom.es2018.css +1 -1736
- package/build/vdom.es2018.en.css +1 -1736
- package/build/vdom.es2018.en.js +5618 -11557
- package/build/vdom.es2018.en.min.css +1 -1
- package/build/vdom.es2018.en.min.js +1 -1
- package/build/vdom.es2018.js +5618 -11557
- package/build/vdom.es2018.min.css +1 -1
- package/build/vdom.es2018.min.js +1 -1
- package/build/vdom.js +6779 -13461
- package/build/vdom.min.css +1 -1
- package/build/vdom.min.js +1 -1
- package/package.json +1 -1
- package/src/core/vdom/README.md +2 -0
- package/src/core/vdom/helpers/index.ts +2 -2
- package/src/core/vdom/render/index.ts +1 -1
- package/src/styles/jodit.less +1 -1
package/build/vdom.es2018.en.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
4
|
-
* Version: v3.14.
|
|
4
|
+
* Version: v3.14.3
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1275,1738 +1275,3 @@
|
|
|
1275
1275
|
clip: rect(-6px, 22px, 14px, var(--jd-padding-default));
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
|
-
/*!
|
|
1279
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1280
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1281
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1282
|
-
*/
|
|
1283
|
-
.jodit-context-menu {
|
|
1284
|
-
position: static;
|
|
1285
|
-
width: auto;
|
|
1286
|
-
max-width: none;
|
|
1287
|
-
height: auto;
|
|
1288
|
-
padding: 0;
|
|
1289
|
-
border: 0;
|
|
1290
|
-
margin: 0;
|
|
1291
|
-
background: 0 0;
|
|
1292
|
-
float: none;
|
|
1293
|
-
outline: 0;
|
|
1294
|
-
position: fixed;
|
|
1295
|
-
z-index: var(--jd-z-index-popup);
|
|
1296
|
-
display: inline-block;
|
|
1297
|
-
box-shadow: var(--jd-popup-box-shadow);
|
|
1298
|
-
transform: translate3d(0, 0, 0);
|
|
1299
|
-
z-index: var(--jd-z-index-context-menu);
|
|
1300
|
-
}
|
|
1301
|
-
.jodit-context-menu__content {
|
|
1302
|
-
font-family: var(--jd-font-default);
|
|
1303
|
-
font-size: var(--jd-font-size-default);
|
|
1304
|
-
overflow: auto;
|
|
1305
|
-
max-height: 300px;
|
|
1306
|
-
padding: var(--jd-padding-default);
|
|
1307
|
-
background: var(--jd-color-background-default);
|
|
1308
|
-
overflow-scrolling: touch;
|
|
1309
|
-
}
|
|
1310
|
-
.jodit-context-menu_padding_false .jodit-context-menu__content {
|
|
1311
|
-
padding: 0;
|
|
1312
|
-
}
|
|
1313
|
-
.jodit-context-menu_max-height_false .jodit-context-menu__content {
|
|
1314
|
-
max-height: fit-content;
|
|
1315
|
-
}
|
|
1316
|
-
.jodit-context-menu .jodit-ui-button {
|
|
1317
|
-
display: flex;
|
|
1318
|
-
}
|
|
1319
|
-
.jodit-context-menu__actions {
|
|
1320
|
-
font-family: var(--jd-font-default);
|
|
1321
|
-
font-size: var(--jd-font-size-default);
|
|
1322
|
-
}
|
|
1323
|
-
.jodit-context-menu__actions button {
|
|
1324
|
-
width: 100%;
|
|
1325
|
-
}
|
|
1326
|
-
.jodit-context-menu_theme_dark .jodit-context-menu__content {
|
|
1327
|
-
background-color: var(--jd-dark_background_color);
|
|
1328
|
-
}
|
|
1329
|
-
|
|
1330
|
-
/*!
|
|
1331
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1332
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1333
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1334
|
-
*/
|
|
1335
|
-
.jodit-dialog {
|
|
1336
|
-
font-family: var(--jd-font-default);
|
|
1337
|
-
font-size: var(--jd-font-size-default);
|
|
1338
|
-
position: absolute;
|
|
1339
|
-
display: none;
|
|
1340
|
-
width: 0;
|
|
1341
|
-
height: 0;
|
|
1342
|
-
box-sizing: border-box;
|
|
1343
|
-
border: 0;
|
|
1344
|
-
will-change: left, top, width, height;
|
|
1345
|
-
}
|
|
1346
|
-
.jodit-dialog_moved_true {
|
|
1347
|
-
user-select: none;
|
|
1348
|
-
}
|
|
1349
|
-
.jodit-dialog * {
|
|
1350
|
-
box-sizing: border-box;
|
|
1351
|
-
}
|
|
1352
|
-
.jodit-dialog .jodit_elfinder,
|
|
1353
|
-
.jodit-dialog .jodit_elfinder * {
|
|
1354
|
-
box-sizing: initial;
|
|
1355
|
-
}
|
|
1356
|
-
.jodit-dialog__overlay {
|
|
1357
|
-
position: fixed;
|
|
1358
|
-
z-index: var(--jd-z-index-dialog-overlay);
|
|
1359
|
-
top: 0;
|
|
1360
|
-
left: 0;
|
|
1361
|
-
display: none;
|
|
1362
|
-
overflow: auto;
|
|
1363
|
-
width: 100%;
|
|
1364
|
-
height: 100%;
|
|
1365
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
1366
|
-
text-align: center;
|
|
1367
|
-
white-space: nowrap;
|
|
1368
|
-
}
|
|
1369
|
-
.jodit-dialog_static_true .jodit-dialog__overlay {
|
|
1370
|
-
display: none;
|
|
1371
|
-
}
|
|
1372
|
-
.jodit-dialog_modal_true .jodit-dialog__overlay {
|
|
1373
|
-
display: block;
|
|
1374
|
-
}
|
|
1375
|
-
.jodit-dialog_active_true {
|
|
1376
|
-
display: block;
|
|
1377
|
-
}
|
|
1378
|
-
.jodit-dialog__panel {
|
|
1379
|
-
position: fixed;
|
|
1380
|
-
z-index: var(--jd-z-index-dialog);
|
|
1381
|
-
top: 0;
|
|
1382
|
-
left: 0;
|
|
1383
|
-
display: flex;
|
|
1384
|
-
min-width: 200px;
|
|
1385
|
-
max-width: 100%;
|
|
1386
|
-
min-height: 100px;
|
|
1387
|
-
max-height: 100%;
|
|
1388
|
-
flex-flow: column nowrap;
|
|
1389
|
-
background-color: #fff;
|
|
1390
|
-
--jd-box-shadow-blur: calc(var(--jd-padding-default) * 2);
|
|
1391
|
-
--jd-box-shadow-1: 0 var(--jd-padding-default) var(--jd-box-shadow-blur) rgba(0, 0, 0, 0.19);
|
|
1392
|
-
box-shadow: var(--jd-box-shadow-1), 0 6px 6px rgba(0, 0, 0, 0.23);
|
|
1393
|
-
text-align: left;
|
|
1394
|
-
white-space: normal;
|
|
1395
|
-
}
|
|
1396
|
-
@media (max-width: 480px) {
|
|
1397
|
-
.jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__panel {
|
|
1398
|
-
top: 0 !important;
|
|
1399
|
-
left: 0 !important;
|
|
1400
|
-
width: 100% !important;
|
|
1401
|
-
max-width: 100%;
|
|
1402
|
-
height: 100% !important;
|
|
1403
|
-
}
|
|
1404
|
-
}
|
|
1405
|
-
.jodit-dialog_static_true {
|
|
1406
|
-
position: static;
|
|
1407
|
-
display: block;
|
|
1408
|
-
width: auto;
|
|
1409
|
-
height: auto;
|
|
1410
|
-
box-sizing: border-box;
|
|
1411
|
-
}
|
|
1412
|
-
.jodit-dialog_static_true .jodit-dialog__panel {
|
|
1413
|
-
position: relative;
|
|
1414
|
-
top: auto !important;
|
|
1415
|
-
left: auto !important;
|
|
1416
|
-
width: 100% !important;
|
|
1417
|
-
}
|
|
1418
|
-
.jodit-dialog_theme_dark,
|
|
1419
|
-
.jodit-dialog_theme_dark .jodit-dialog__panel {
|
|
1420
|
-
background-color: var(--jd-dark_background_darknes);
|
|
1421
|
-
color: var(--jd-dark-text-color);
|
|
1422
|
-
}
|
|
1423
|
-
.jodit-dialog__header {
|
|
1424
|
-
display: flex;
|
|
1425
|
-
min-height: 50px;
|
|
1426
|
-
justify-content: space-between;
|
|
1427
|
-
border-bottom: 1px solid var(--jd-color-border);
|
|
1428
|
-
cursor: move;
|
|
1429
|
-
text-align: left;
|
|
1430
|
-
}
|
|
1431
|
-
.jodit-dialog__header-toolbar,
|
|
1432
|
-
.jodit-dialog__header-title {
|
|
1433
|
-
display: flex;
|
|
1434
|
-
flex-shrink: 3;
|
|
1435
|
-
align-items: center;
|
|
1436
|
-
padding: 0 var(--jd-padding-default);
|
|
1437
|
-
margin: 0;
|
|
1438
|
-
font-size: 18px;
|
|
1439
|
-
font-weight: 400;
|
|
1440
|
-
line-height: 48px;
|
|
1441
|
-
vertical-align: top;
|
|
1442
|
-
}
|
|
1443
|
-
@media (max-width: 480px) {
|
|
1444
|
-
.jodit-dialog__header-toolbar {
|
|
1445
|
-
padding-left: 0;
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
.jodit-dialog__header-button {
|
|
1449
|
-
height: 48px;
|
|
1450
|
-
flex-basis: 48px;
|
|
1451
|
-
color: #222;
|
|
1452
|
-
font-size: 28px;
|
|
1453
|
-
line-height: 48px;
|
|
1454
|
-
text-align: center;
|
|
1455
|
-
text-decoration: none;
|
|
1456
|
-
transition: background-color 0.2s ease 0s;
|
|
1457
|
-
}
|
|
1458
|
-
.jodit-dialog__header-button:hover {
|
|
1459
|
-
background-color: var(--jd-color-background-button-hover);
|
|
1460
|
-
}
|
|
1461
|
-
.jodit-dialog__header .jodit_toolbar {
|
|
1462
|
-
border: 0;
|
|
1463
|
-
background: transparent;
|
|
1464
|
-
box-shadow: none;
|
|
1465
|
-
}
|
|
1466
|
-
.jodit-dialog__header .jodit_toolbar > li.jodit-toolbar-button .jodit-input {
|
|
1467
|
-
width: auto;
|
|
1468
|
-
padding-left: var(--jd-padding-default);
|
|
1469
|
-
}
|
|
1470
|
-
@media (max-width: 480px) {
|
|
1471
|
-
.jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__header {
|
|
1472
|
-
flex-direction: column;
|
|
1473
|
-
}
|
|
1474
|
-
}
|
|
1475
|
-
.jodit-dialog_slim_true .jodit-dialog__header {
|
|
1476
|
-
min-height: 10px;
|
|
1477
|
-
}
|
|
1478
|
-
.jodit-dialog_slim_true .jodit-dialog__header-toolbar,
|
|
1479
|
-
.jodit-dialog_slim_true .jodit-dialog__header-title {
|
|
1480
|
-
padding: 0 calc(var(--jd-padding-default) / 4);
|
|
1481
|
-
}
|
|
1482
|
-
.jodit-dialog_theme_dark .jodit-dialog__header {
|
|
1483
|
-
border-color: var(--jd-color-dark);
|
|
1484
|
-
}
|
|
1485
|
-
.jodit-dialog_fullsize_true .jodit-dialog__header {
|
|
1486
|
-
cursor: default;
|
|
1487
|
-
}
|
|
1488
|
-
.jodit-dialog__content {
|
|
1489
|
-
overflow: auto;
|
|
1490
|
-
min-height: 100px;
|
|
1491
|
-
flex: 1;
|
|
1492
|
-
}
|
|
1493
|
-
.jodit-dialog__content .jodit-form__group {
|
|
1494
|
-
padding: 0 var(--jd-padding-default);
|
|
1495
|
-
margin-bottom: calc(var(--jd-padding-default) * 1.5);
|
|
1496
|
-
}
|
|
1497
|
-
.jodit-dialog__content .jodit-form__group:first-child {
|
|
1498
|
-
margin-top: var(--jd-padding-default);
|
|
1499
|
-
}
|
|
1500
|
-
.jodit-dialog__content .jodit-form__group label + .jodit-select,
|
|
1501
|
-
.jodit-dialog__content .jodit-form__group label + .jodit-grid,
|
|
1502
|
-
.jodit-dialog__content .jodit-form__group label + .jodit-input_group,
|
|
1503
|
-
.jodit-dialog__content .jodit-form__group label + input {
|
|
1504
|
-
margin-top: calc(var(--jd-padding-default) / 2);
|
|
1505
|
-
}
|
|
1506
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group {
|
|
1507
|
-
display: table;
|
|
1508
|
-
width: 100%;
|
|
1509
|
-
border-collapse: separate;
|
|
1510
|
-
}
|
|
1511
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group > * {
|
|
1512
|
-
display: table-cell;
|
|
1513
|
-
height: 34px;
|
|
1514
|
-
vertical-align: middle;
|
|
1515
|
-
}
|
|
1516
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group > input {
|
|
1517
|
-
margin: 0 !important;
|
|
1518
|
-
}
|
|
1519
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group > input:not([class*='col-']) {
|
|
1520
|
-
width: 100%;
|
|
1521
|
-
}
|
|
1522
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group-buttons {
|
|
1523
|
-
width: 1%;
|
|
1524
|
-
font-size: 0;
|
|
1525
|
-
vertical-align: middle;
|
|
1526
|
-
white-space: nowrap;
|
|
1527
|
-
}
|
|
1528
|
-
.jodit-dialog__content .jodit-form__group .jodit-input_group-buttons > .jodit-button {
|
|
1529
|
-
height: 34px;
|
|
1530
|
-
border: 1px solid var(--jd-color-border);
|
|
1531
|
-
margin-left: -1px;
|
|
1532
|
-
border-radius: 0;
|
|
1533
|
-
line-height: 34px;
|
|
1534
|
-
}
|
|
1535
|
-
.jodit-dialog__footer {
|
|
1536
|
-
display: none;
|
|
1537
|
-
flex-wrap: nowrap;
|
|
1538
|
-
justify-content: space-between;
|
|
1539
|
-
padding: var(--jd-padding-default);
|
|
1540
|
-
}
|
|
1541
|
-
.jodit-dialog__footer button {
|
|
1542
|
-
margin-right: calc(var(--jd-padding-default) / 2);
|
|
1543
|
-
}
|
|
1544
|
-
.jodit-dialog__footer button:last-child {
|
|
1545
|
-
margin-right: 0;
|
|
1546
|
-
}
|
|
1547
|
-
.jodit-dialog__column {
|
|
1548
|
-
display: flex;
|
|
1549
|
-
}
|
|
1550
|
-
.jodit-dialog__resizer {
|
|
1551
|
-
display: none;
|
|
1552
|
-
position: relative;
|
|
1553
|
-
}
|
|
1554
|
-
.jodit-dialog__resizer svg {
|
|
1555
|
-
position: absolute;
|
|
1556
|
-
right: 0;
|
|
1557
|
-
bottom: 0;
|
|
1558
|
-
overflow: hidden;
|
|
1559
|
-
width: 12px;
|
|
1560
|
-
height: 12px;
|
|
1561
|
-
cursor: nwse-resize;
|
|
1562
|
-
fill: var(--jd-color-gray-dark);
|
|
1563
|
-
user-select: none;
|
|
1564
|
-
}
|
|
1565
|
-
.jodit-dialog_resizable_true .jodit-dialog__resizer {
|
|
1566
|
-
display: block;
|
|
1567
|
-
}
|
|
1568
|
-
@media (max-width: 480px) {
|
|
1569
|
-
.jodit-dialog__resizer {
|
|
1570
|
-
display: none;
|
|
1571
|
-
}
|
|
1572
|
-
}
|
|
1573
|
-
.jodit-dialog_prompt {
|
|
1574
|
-
min-width: 200px;
|
|
1575
|
-
max-width: 300px;
|
|
1576
|
-
padding: var(--jd-padding-default);
|
|
1577
|
-
word-break: break-all;
|
|
1578
|
-
}
|
|
1579
|
-
.jodit-dialog_prompt label {
|
|
1580
|
-
display: block;
|
|
1581
|
-
margin-bottom: calc(var(--jd-padding-default) / 2);
|
|
1582
|
-
}
|
|
1583
|
-
.jodit-dialog_alert {
|
|
1584
|
-
min-width: 200px;
|
|
1585
|
-
max-width: 300px;
|
|
1586
|
-
padding: var(--jd-padding-default);
|
|
1587
|
-
word-break: break-all;
|
|
1588
|
-
}
|
|
1589
|
-
.jodit-dialog_footer_true .jodit-dialog__footer {
|
|
1590
|
-
display: flex;
|
|
1591
|
-
}
|
|
1592
|
-
.jodit_fullsize .jodit-dialog__panel {
|
|
1593
|
-
top: 0 !important;
|
|
1594
|
-
right: 0 !important;
|
|
1595
|
-
bottom: 0 !important;
|
|
1596
|
-
left: 0 !important;
|
|
1597
|
-
width: 100% !important;
|
|
1598
|
-
height: 100% !important;
|
|
1599
|
-
}
|
|
1600
|
-
.jodit_fullsize .jodit-dialog__panel .jodit-dialog__resizer {
|
|
1601
|
-
display: none;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
/*!
|
|
1605
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1606
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1607
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1608
|
-
*/
|
|
1609
|
-
.jodit-toolbar__box:not(:empty) {
|
|
1610
|
-
--jd-color-background-default: var(--jd-color-panel);
|
|
1611
|
-
overflow: hidden;
|
|
1612
|
-
border-bottom: 1px solid var(--jd-color-border);
|
|
1613
|
-
background-color: var(--jd-color-panel);
|
|
1614
|
-
border-radius: var(--jd-border-radius-default) var(--jd-border-radius-default) 0 0;
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
|
-
/*!
|
|
1618
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1619
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1620
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1621
|
-
*/
|
|
1622
|
-
.jodit-toolbar-collection,
|
|
1623
|
-
.jodit-toolbar-editor-collection {
|
|
1624
|
-
display: flex;
|
|
1625
|
-
flex-direction: column;
|
|
1626
|
-
}
|
|
1627
|
-
.jodit-toolbar-collection_mode_horizontal,
|
|
1628
|
-
.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1629
|
-
position: relative;
|
|
1630
|
-
background-image: repeating-linear-gradient(transparent 0, transparent calc(var(--jd-button-size) - 1px), var(--jd-color-border) var(--jd-button-size));
|
|
1631
|
-
}
|
|
1632
|
-
.jodit-toolbar-collection_mode_horizontal:after,
|
|
1633
|
-
.jodit-toolbar-editor-collection_mode_horizontal:after {
|
|
1634
|
-
position: absolute;
|
|
1635
|
-
bottom: 0;
|
|
1636
|
-
left: 0;
|
|
1637
|
-
display: block;
|
|
1638
|
-
width: 100%;
|
|
1639
|
-
height: 1px;
|
|
1640
|
-
background-color: var(--jd-color-background-default);
|
|
1641
|
-
content: '';
|
|
1642
|
-
}
|
|
1643
|
-
.jodit-toolbar-collection_size_tiny,
|
|
1644
|
-
.jodit-toolbar-editor-collection_size_tiny {
|
|
1645
|
-
--jd-button-icon-size: 8px;
|
|
1646
|
-
}
|
|
1647
|
-
.jodit-toolbar-collection_size_tiny.jodit-toolbar-collection_mode_horizontal,
|
|
1648
|
-
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-collection_mode_horizontal,
|
|
1649
|
-
.jodit-toolbar-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal,
|
|
1650
|
-
.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1651
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 19px, var(--jd-color-border) 20px);
|
|
1652
|
-
}
|
|
1653
|
-
.jodit-toolbar-collection_size_xsmall,
|
|
1654
|
-
.jodit-toolbar-editor-collection_size_xsmall {
|
|
1655
|
-
--jd-button-icon-size: 10px;
|
|
1656
|
-
}
|
|
1657
|
-
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal,
|
|
1658
|
-
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal,
|
|
1659
|
-
.jodit-toolbar-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal,
|
|
1660
|
-
.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1661
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 25px, var(--jd-color-border) 26px);
|
|
1662
|
-
}
|
|
1663
|
-
.jodit-toolbar-collection_size_small,
|
|
1664
|
-
.jodit-toolbar-editor-collection_size_small {
|
|
1665
|
-
--jd-button-icon-size: 12px;
|
|
1666
|
-
}
|
|
1667
|
-
.jodit-toolbar-collection_size_small.jodit-toolbar-collection_mode_horizontal,
|
|
1668
|
-
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-collection_mode_horizontal,
|
|
1669
|
-
.jodit-toolbar-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal,
|
|
1670
|
-
.jodit-toolbar-editor-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1671
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 31px, var(--jd-color-border) 32px);
|
|
1672
|
-
}
|
|
1673
|
-
.jodit-toolbar-collection_size_middle,
|
|
1674
|
-
.jodit-toolbar-editor-collection_size_middle {
|
|
1675
|
-
--jd-button-icon-size: 14px;
|
|
1676
|
-
}
|
|
1677
|
-
.jodit-toolbar-collection_size_middle.jodit-toolbar-collection_mode_horizontal,
|
|
1678
|
-
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-collection_mode_horizontal,
|
|
1679
|
-
.jodit-toolbar-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal,
|
|
1680
|
-
.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1681
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 37px, var(--jd-color-border) 38px);
|
|
1682
|
-
}
|
|
1683
|
-
.jodit-toolbar-collection_size_large,
|
|
1684
|
-
.jodit-toolbar-editor-collection_size_large {
|
|
1685
|
-
--jd-button-icon-size: 16px;
|
|
1686
|
-
}
|
|
1687
|
-
.jodit-toolbar-collection_size_large.jodit-toolbar-collection_mode_horizontal,
|
|
1688
|
-
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-collection_mode_horizontal,
|
|
1689
|
-
.jodit-toolbar-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal,
|
|
1690
|
-
.jodit-toolbar-editor-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
|
|
1691
|
-
background-image: repeating-linear-gradient(transparent 0, transparent 43px, var(--jd-color-border) 44px);
|
|
1692
|
-
}
|
|
1693
|
-
.jodit-toolbar-collection_mode_vertical .jodit-ui-group,
|
|
1694
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-ui-group {
|
|
1695
|
-
flex-direction: column;
|
|
1696
|
-
border: 0;
|
|
1697
|
-
background-color: transparent;
|
|
1698
|
-
}
|
|
1699
|
-
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button,
|
|
1700
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button {
|
|
1701
|
-
height: auto;
|
|
1702
|
-
min-height: var(--jd-button-size);
|
|
1703
|
-
}
|
|
1704
|
-
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__button,
|
|
1705
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button {
|
|
1706
|
-
width: 100%;
|
|
1707
|
-
height: auto;
|
|
1708
|
-
min-height: var(--jd-button-size);
|
|
1709
|
-
cursor: pointer;
|
|
1710
|
-
}
|
|
1711
|
-
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__text:not(:empty),
|
|
1712
|
-
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__text:not(:empty) {
|
|
1713
|
-
justify-content: left;
|
|
1714
|
-
}
|
|
1715
|
-
.jodit-toolbar-collection .jodit-toolbar-content,
|
|
1716
|
-
.jodit-toolbar-editor-collection .jodit-toolbar-content,
|
|
1717
|
-
.jodit-toolbar-collection .jodit-toolbar-button,
|
|
1718
|
-
.jodit-toolbar-editor-collection .jodit-toolbar-button {
|
|
1719
|
-
padding: 0;
|
|
1720
|
-
margin: var(--jd-margin-v) 1px;
|
|
1721
|
-
}
|
|
1722
|
-
.jodit-dialog .jodit-toolbar-collection_mode_horizontal,
|
|
1723
|
-
.jodit-dialog .jodit-toolbar-editor-collection_mode_horizontal {
|
|
1724
|
-
background-image: none;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
/*!
|
|
1728
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1729
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1730
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1731
|
-
*/
|
|
1732
|
-
.jodit-toolbar-button {
|
|
1733
|
-
display: flex;
|
|
1734
|
-
overflow: hidden;
|
|
1735
|
-
align-items: center;
|
|
1736
|
-
justify-content: center;
|
|
1737
|
-
border: 1px solid transparent;
|
|
1738
|
-
border-radius: var(--jd-border-radius-default);
|
|
1739
|
-
min-width: 34px;
|
|
1740
|
-
height: 34px;
|
|
1741
|
-
}
|
|
1742
|
-
.jodit-toolbar-button__icon {
|
|
1743
|
-
display: none;
|
|
1744
|
-
}
|
|
1745
|
-
.jodit-toolbar-button__icon:not(:empty) {
|
|
1746
|
-
display: inline-flex;
|
|
1747
|
-
}
|
|
1748
|
-
.jodit-toolbar-button__text {
|
|
1749
|
-
display: none;
|
|
1750
|
-
}
|
|
1751
|
-
.jodit-toolbar-button__text:not(:empty) {
|
|
1752
|
-
font-family: var(--jd-font-default);
|
|
1753
|
-
font-size: var(--jd-font-size-default);
|
|
1754
|
-
display: inline-flex;
|
|
1755
|
-
flex-grow: 1;
|
|
1756
|
-
justify-content: center;
|
|
1757
|
-
}
|
|
1758
|
-
.jodit-toolbar-button_context_menu .jodit-toolbar-button__text {
|
|
1759
|
-
position: relative;
|
|
1760
|
-
justify-content: left;
|
|
1761
|
-
padding-left: var(--jd-padding-default);
|
|
1762
|
-
}
|
|
1763
|
-
.jodit-toolbar-button_context_menu .jodit-toolbar-button__text::before {
|
|
1764
|
-
position: absolute;
|
|
1765
|
-
top: calc(var(--jd-padding-default) * -1);
|
|
1766
|
-
left: 0;
|
|
1767
|
-
height: 35px;
|
|
1768
|
-
border-left: 1px solid var(--jd-color-border);
|
|
1769
|
-
content: '';
|
|
1770
|
-
}
|
|
1771
|
-
.jodit-toolbar-button__icon:not(:empty) + .jodit-toolbar-button__text:not(:empty) {
|
|
1772
|
-
margin-left: var(--jd-padding-default);
|
|
1773
|
-
}
|
|
1774
|
-
.jodit-toolbar-button__icon:empty + .jodit-toolbar-button__text:not(:empty) {
|
|
1775
|
-
padding: 0 var(--jd-padding-default);
|
|
1776
|
-
}
|
|
1777
|
-
.jodit-toolbar-button__icon:empty + .jodit-toolbar-button__text:not(:empty) {
|
|
1778
|
-
padding: 0;
|
|
1779
|
-
}
|
|
1780
|
-
.jodit-toolbar-button .jodit-icon {
|
|
1781
|
-
width: 14px;
|
|
1782
|
-
height: 14px;
|
|
1783
|
-
}
|
|
1784
|
-
.jodit-toolbar-button button {
|
|
1785
|
-
min-width: 34px;
|
|
1786
|
-
height: 34px;
|
|
1787
|
-
padding: 0;
|
|
1788
|
-
appearance: none;
|
|
1789
|
-
}
|
|
1790
|
-
.jodit-toolbar-button_text-icons_true button {
|
|
1791
|
-
padding: 0 var(--jd-padding-default);
|
|
1792
|
-
}
|
|
1793
|
-
.jodit-toolbar-button_size_tiny {
|
|
1794
|
-
min-width: 16px;
|
|
1795
|
-
height: 16px;
|
|
1796
|
-
}
|
|
1797
|
-
.jodit-toolbar-button_size_tiny .jodit-icon {
|
|
1798
|
-
width: 8px;
|
|
1799
|
-
height: 8px;
|
|
1800
|
-
}
|
|
1801
|
-
.jodit-toolbar-button_size_tiny button {
|
|
1802
|
-
min-width: 16px;
|
|
1803
|
-
height: 16px;
|
|
1804
|
-
padding: 0;
|
|
1805
|
-
appearance: none;
|
|
1806
|
-
}
|
|
1807
|
-
.jodit-toolbar-button_size_tiny_text-icons_true button {
|
|
1808
|
-
padding: 0 var(--jd-padding-default);
|
|
1809
|
-
}
|
|
1810
|
-
.jodit-toolbar-button_size_xsmall {
|
|
1811
|
-
min-width: 22px;
|
|
1812
|
-
height: 22px;
|
|
1813
|
-
}
|
|
1814
|
-
.jodit-toolbar-button_size_xsmall .jodit-icon {
|
|
1815
|
-
width: 10px;
|
|
1816
|
-
height: 10px;
|
|
1817
|
-
}
|
|
1818
|
-
.jodit-toolbar-button_size_xsmall button {
|
|
1819
|
-
min-width: 22px;
|
|
1820
|
-
height: 22px;
|
|
1821
|
-
padding: 0;
|
|
1822
|
-
appearance: none;
|
|
1823
|
-
}
|
|
1824
|
-
.jodit-toolbar-button_size_xsmall_text-icons_true button {
|
|
1825
|
-
padding: 0 var(--jd-padding-default);
|
|
1826
|
-
}
|
|
1827
|
-
.jodit-toolbar-button_size_small {
|
|
1828
|
-
min-width: 28px;
|
|
1829
|
-
height: 28px;
|
|
1830
|
-
}
|
|
1831
|
-
.jodit-toolbar-button_size_small .jodit-icon {
|
|
1832
|
-
width: 12px;
|
|
1833
|
-
height: 12px;
|
|
1834
|
-
}
|
|
1835
|
-
.jodit-toolbar-button_size_small button {
|
|
1836
|
-
min-width: 28px;
|
|
1837
|
-
height: 28px;
|
|
1838
|
-
padding: 0;
|
|
1839
|
-
appearance: none;
|
|
1840
|
-
}
|
|
1841
|
-
.jodit-toolbar-button_size_small_text-icons_true button {
|
|
1842
|
-
padding: 0 var(--jd-padding-default);
|
|
1843
|
-
}
|
|
1844
|
-
.jodit-toolbar-button_size_large {
|
|
1845
|
-
min-width: 40px;
|
|
1846
|
-
height: 40px;
|
|
1847
|
-
}
|
|
1848
|
-
.jodit-toolbar-button_size_large .jodit-icon {
|
|
1849
|
-
width: 16px;
|
|
1850
|
-
height: 16px;
|
|
1851
|
-
}
|
|
1852
|
-
.jodit-toolbar-button_size_large button {
|
|
1853
|
-
min-width: 40px;
|
|
1854
|
-
height: 40px;
|
|
1855
|
-
padding: 0;
|
|
1856
|
-
appearance: none;
|
|
1857
|
-
}
|
|
1858
|
-
.jodit-toolbar-button_size_large_text-icons_true button {
|
|
1859
|
-
padding: 0 var(--jd-padding-default);
|
|
1860
|
-
}
|
|
1861
|
-
.jodit-toolbar-button__button {
|
|
1862
|
-
cursor: pointer;
|
|
1863
|
-
position: relative;
|
|
1864
|
-
box-sizing: border-box;
|
|
1865
|
-
padding: 0;
|
|
1866
|
-
border: 0;
|
|
1867
|
-
appearance: none;
|
|
1868
|
-
background: 0 0;
|
|
1869
|
-
box-shadow: none;
|
|
1870
|
-
font-style: normal;
|
|
1871
|
-
outline: 0;
|
|
1872
|
-
text-align: center;
|
|
1873
|
-
text-decoration: none;
|
|
1874
|
-
text-transform: none;
|
|
1875
|
-
user-select: none;
|
|
1876
|
-
display: inline-flex;
|
|
1877
|
-
align-items: center;
|
|
1878
|
-
justify-content: center;
|
|
1879
|
-
padding: 0 var(--jd-padding-default);
|
|
1880
|
-
border-radius: var(--jd-border-radius-default);
|
|
1881
|
-
color: var(--jd-color-text-icons);
|
|
1882
|
-
}
|
|
1883
|
-
.jodit-toolbar-button__button:hover:not([disabled]) {
|
|
1884
|
-
background-color: var(--jd-color-button-background-hover);
|
|
1885
|
-
opacity: 1;
|
|
1886
|
-
outline: 0;
|
|
1887
|
-
}
|
|
1888
|
-
.jodit-toolbar-button__button:active:not([disabled]),
|
|
1889
|
-
.jodit-toolbar-button__button[aria-pressed='true']:not([disabled]) {
|
|
1890
|
-
background-color: var(--jd-color-button-background-hover_opacity40);
|
|
1891
|
-
outline: 0;
|
|
1892
|
-
}
|
|
1893
|
-
.jodit-toolbar-button__button[aria-pressed='true']:hover:not([disabled]) {
|
|
1894
|
-
background-color: var(--jd-color-button-background-hover_opacity60);
|
|
1895
|
-
}
|
|
1896
|
-
.jodit-toolbar-button__button[disabled] {
|
|
1897
|
-
opacity: 0.3;
|
|
1898
|
-
pointer-events: none;
|
|
1899
|
-
}
|
|
1900
|
-
.jodit-toolbar-button__trigger {
|
|
1901
|
-
display: flex;
|
|
1902
|
-
height: 100%;
|
|
1903
|
-
align-items: center;
|
|
1904
|
-
justify-content: center;
|
|
1905
|
-
border-radius: 0 var(--jd-border-radius-default) var(--jd-border-radius-default) 0;
|
|
1906
|
-
opacity: 0.4;
|
|
1907
|
-
cursor: pointer;
|
|
1908
|
-
width: 14px;
|
|
1909
|
-
}
|
|
1910
|
-
.jodit-toolbar-button__trigger:hover:not([disabled]) {
|
|
1911
|
-
background-color: var(--jd-color-button-background-hover);
|
|
1912
|
-
opacity: 1;
|
|
1913
|
-
outline: 0;
|
|
1914
|
-
}
|
|
1915
|
-
.jodit-toolbar-button__trigger:active:not([disabled]),
|
|
1916
|
-
.jodit-toolbar-button__trigger[aria-pressed='true']:not([disabled]) {
|
|
1917
|
-
background-color: var(--jd-color-button-background-hover_opacity40);
|
|
1918
|
-
outline: 0;
|
|
1919
|
-
}
|
|
1920
|
-
.jodit-toolbar-button__trigger[aria-pressed='true']:hover:not([disabled]) {
|
|
1921
|
-
background-color: var(--jd-color-button-background-hover_opacity60);
|
|
1922
|
-
}
|
|
1923
|
-
.jodit-toolbar-button__trigger[disabled] {
|
|
1924
|
-
opacity: 0.3;
|
|
1925
|
-
pointer-events: none;
|
|
1926
|
-
}
|
|
1927
|
-
.jodit-toolbar-button__trigger svg {
|
|
1928
|
-
width: 10px;
|
|
1929
|
-
}
|
|
1930
|
-
.jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger {
|
|
1931
|
-
width: 8px;
|
|
1932
|
-
}
|
|
1933
|
-
.jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger svg {
|
|
1934
|
-
width: 4px;
|
|
1935
|
-
}
|
|
1936
|
-
.jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger {
|
|
1937
|
-
width: 10px;
|
|
1938
|
-
}
|
|
1939
|
-
.jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger svg {
|
|
1940
|
-
width: 6px;
|
|
1941
|
-
}
|
|
1942
|
-
.jodit-toolbar-button_size_small .jodit-toolbar-button__trigger {
|
|
1943
|
-
width: 12px;
|
|
1944
|
-
}
|
|
1945
|
-
.jodit-toolbar-button_size_small .jodit-toolbar-button__trigger svg {
|
|
1946
|
-
width: 8px;
|
|
1947
|
-
}
|
|
1948
|
-
.jodit-toolbar-button_size_large .jodit-toolbar-button__trigger {
|
|
1949
|
-
width: 16px;
|
|
1950
|
-
}
|
|
1951
|
-
.jodit-toolbar-button_size_large .jodit-toolbar-button__trigger svg {
|
|
1952
|
-
width: 12px;
|
|
1953
|
-
}
|
|
1954
|
-
.jodit-toolbar-button_with-trigger_true .jodit-toolbar-button__button {
|
|
1955
|
-
border-radius: var(--jd-border-radius-default) 0 0 var(--jd-border-radius-default);
|
|
1956
|
-
}
|
|
1957
|
-
.jodit-toolbar-button_with-trigger_true:hover:not([disabled]) {
|
|
1958
|
-
border-color: var(--jd-color-border);
|
|
1959
|
-
}
|
|
1960
|
-
|
|
1961
|
-
/*!
|
|
1962
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
1963
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1964
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1965
|
-
*/
|
|
1966
|
-
.jodit-toolbar-content {
|
|
1967
|
-
position: relative;
|
|
1968
|
-
box-sizing: border-box;
|
|
1969
|
-
border: 0;
|
|
1970
|
-
appearance: none;
|
|
1971
|
-
background: 0 0;
|
|
1972
|
-
box-shadow: none;
|
|
1973
|
-
font-style: normal;
|
|
1974
|
-
outline: 0;
|
|
1975
|
-
text-align: center;
|
|
1976
|
-
text-decoration: none;
|
|
1977
|
-
text-transform: none;
|
|
1978
|
-
user-select: none;
|
|
1979
|
-
display: inline-flex;
|
|
1980
|
-
align-items: center;
|
|
1981
|
-
justify-content: center;
|
|
1982
|
-
padding: 0 var(--jd-padding-default);
|
|
1983
|
-
border-radius: var(--jd-border-radius-default);
|
|
1984
|
-
color: var(--jd-color-text-icons);
|
|
1985
|
-
cursor: pointer;
|
|
1986
|
-
min-width: 34px;
|
|
1987
|
-
height: 34px;
|
|
1988
|
-
padding: 0;
|
|
1989
|
-
border: 1px solid transparent;
|
|
1990
|
-
}
|
|
1991
|
-
.jodit-toolbar-content:hover:not([disabled]) {
|
|
1992
|
-
background-color: var(--jd-color-button-background-hover);
|
|
1993
|
-
opacity: 1;
|
|
1994
|
-
outline: 0;
|
|
1995
|
-
}
|
|
1996
|
-
.jodit-toolbar-content:active:not([disabled]),
|
|
1997
|
-
.jodit-toolbar-content[aria-pressed='true']:not([disabled]) {
|
|
1998
|
-
background-color: var(--jd-color-button-background-hover_opacity40);
|
|
1999
|
-
outline: 0;
|
|
2000
|
-
}
|
|
2001
|
-
.jodit-toolbar-content[aria-pressed='true']:hover:not([disabled]) {
|
|
2002
|
-
background-color: var(--jd-color-button-background-hover_opacity60);
|
|
2003
|
-
}
|
|
2004
|
-
.jodit-toolbar-content[disabled] {
|
|
2005
|
-
opacity: 0.3;
|
|
2006
|
-
pointer-events: none;
|
|
2007
|
-
}
|
|
2008
|
-
.jodit-toolbar-content .jodit-icon {
|
|
2009
|
-
width: 14px;
|
|
2010
|
-
height: 14px;
|
|
2011
|
-
}
|
|
2012
|
-
.jodit-toolbar-content button {
|
|
2013
|
-
min-width: 34px;
|
|
2014
|
-
height: 34px;
|
|
2015
|
-
padding: 0;
|
|
2016
|
-
appearance: none;
|
|
2017
|
-
}
|
|
2018
|
-
.jodit-toolbar-content_text-icons_true button {
|
|
2019
|
-
padding: 0 var(--jd-padding-default);
|
|
2020
|
-
}
|
|
2021
|
-
.jodit-toolbar-content_size_tiny {
|
|
2022
|
-
min-width: 16px;
|
|
2023
|
-
height: 16px;
|
|
2024
|
-
}
|
|
2025
|
-
.jodit-toolbar-content_size_tiny .jodit-icon {
|
|
2026
|
-
width: 8px;
|
|
2027
|
-
height: 8px;
|
|
2028
|
-
}
|
|
2029
|
-
.jodit-toolbar-content_size_tiny button {
|
|
2030
|
-
min-width: 16px;
|
|
2031
|
-
height: 16px;
|
|
2032
|
-
padding: 0;
|
|
2033
|
-
appearance: none;
|
|
2034
|
-
}
|
|
2035
|
-
.jodit-toolbar-content_size_tiny_text-icons_true button {
|
|
2036
|
-
padding: 0 var(--jd-padding-default);
|
|
2037
|
-
}
|
|
2038
|
-
.jodit-toolbar-content_size_xsmall {
|
|
2039
|
-
min-width: 22px;
|
|
2040
|
-
height: 22px;
|
|
2041
|
-
}
|
|
2042
|
-
.jodit-toolbar-content_size_xsmall .jodit-icon {
|
|
2043
|
-
width: 10px;
|
|
2044
|
-
height: 10px;
|
|
2045
|
-
}
|
|
2046
|
-
.jodit-toolbar-content_size_xsmall button {
|
|
2047
|
-
min-width: 22px;
|
|
2048
|
-
height: 22px;
|
|
2049
|
-
padding: 0;
|
|
2050
|
-
appearance: none;
|
|
2051
|
-
}
|
|
2052
|
-
.jodit-toolbar-content_size_xsmall_text-icons_true button {
|
|
2053
|
-
padding: 0 var(--jd-padding-default);
|
|
2054
|
-
}
|
|
2055
|
-
.jodit-toolbar-content_size_small {
|
|
2056
|
-
min-width: 28px;
|
|
2057
|
-
height: 28px;
|
|
2058
|
-
}
|
|
2059
|
-
.jodit-toolbar-content_size_small .jodit-icon {
|
|
2060
|
-
width: 12px;
|
|
2061
|
-
height: 12px;
|
|
2062
|
-
}
|
|
2063
|
-
.jodit-toolbar-content_size_small button {
|
|
2064
|
-
min-width: 28px;
|
|
2065
|
-
height: 28px;
|
|
2066
|
-
padding: 0;
|
|
2067
|
-
appearance: none;
|
|
2068
|
-
}
|
|
2069
|
-
.jodit-toolbar-content_size_small_text-icons_true button {
|
|
2070
|
-
padding: 0 var(--jd-padding-default);
|
|
2071
|
-
}
|
|
2072
|
-
.jodit-toolbar-content_size_large {
|
|
2073
|
-
min-width: 40px;
|
|
2074
|
-
height: 40px;
|
|
2075
|
-
}
|
|
2076
|
-
.jodit-toolbar-content_size_large .jodit-icon {
|
|
2077
|
-
width: 16px;
|
|
2078
|
-
height: 16px;
|
|
2079
|
-
}
|
|
2080
|
-
.jodit-toolbar-content_size_large button {
|
|
2081
|
-
min-width: 40px;
|
|
2082
|
-
height: 40px;
|
|
2083
|
-
padding: 0;
|
|
2084
|
-
appearance: none;
|
|
2085
|
-
}
|
|
2086
|
-
.jodit-toolbar-content_size_large_text-icons_true button {
|
|
2087
|
-
padding: 0 var(--jd-padding-default);
|
|
2088
|
-
}
|
|
2089
|
-
.jodit-toolbar-content__icon {
|
|
2090
|
-
display: none;
|
|
2091
|
-
}
|
|
2092
|
-
.jodit-toolbar-content__icon:not(:empty) {
|
|
2093
|
-
display: inline-flex;
|
|
2094
|
-
}
|
|
2095
|
-
.jodit-toolbar-content__text {
|
|
2096
|
-
display: none;
|
|
2097
|
-
}
|
|
2098
|
-
.jodit-toolbar-content__text:not(:empty) {
|
|
2099
|
-
font-family: var(--jd-font-default);
|
|
2100
|
-
font-size: var(--jd-font-size-default);
|
|
2101
|
-
display: inline-flex;
|
|
2102
|
-
flex-grow: 1;
|
|
2103
|
-
justify-content: center;
|
|
2104
|
-
}
|
|
2105
|
-
.jodit-toolbar-content_context_menu .jodit-toolbar-content__text {
|
|
2106
|
-
position: relative;
|
|
2107
|
-
justify-content: left;
|
|
2108
|
-
padding-left: var(--jd-padding-default);
|
|
2109
|
-
}
|
|
2110
|
-
.jodit-toolbar-content_context_menu .jodit-toolbar-content__text::before {
|
|
2111
|
-
position: absolute;
|
|
2112
|
-
top: calc(var(--jd-padding-default) * -1);
|
|
2113
|
-
left: 0;
|
|
2114
|
-
height: 35px;
|
|
2115
|
-
border-left: 1px solid var(--jd-color-border);
|
|
2116
|
-
content: '';
|
|
2117
|
-
}
|
|
2118
|
-
.jodit-toolbar-content__icon:not(:empty) + .jodit-toolbar-content__text:not(:empty) {
|
|
2119
|
-
margin-left: var(--jd-padding-default);
|
|
2120
|
-
}
|
|
2121
|
-
.jodit-toolbar-content__icon:empty + .jodit-toolbar-content__text:not(:empty) {
|
|
2122
|
-
padding: 0 var(--jd-padding-default);
|
|
2123
|
-
}
|
|
2124
|
-
.jodit-toolbar-content:focus:not([disabled]) {
|
|
2125
|
-
outline: 1px dashed var(--jd-color-background-selection);
|
|
2126
|
-
}
|
|
2127
|
-
.jodit-toolbar-content_variant_default {
|
|
2128
|
-
background-color: #e3e3e3;
|
|
2129
|
-
color: #212529;
|
|
2130
|
-
}
|
|
2131
|
-
.jodit-toolbar-content_variant_default svg {
|
|
2132
|
-
fill: #212529;
|
|
2133
|
-
stroke: #212529;
|
|
2134
|
-
}
|
|
2135
|
-
.jodit-toolbar-content_variant_default [disabled] {
|
|
2136
|
-
opacity: 0.7;
|
|
2137
|
-
}
|
|
2138
|
-
.jodit-toolbar-content_variant_default:hover:not([disabled]) {
|
|
2139
|
-
background-color: #c9cdd1;
|
|
2140
|
-
color: #212529;
|
|
2141
|
-
}
|
|
2142
|
-
.jodit-toolbar-content_variant_default:hover:not([disabled]) svg {
|
|
2143
|
-
fill: #212529;
|
|
2144
|
-
stroke: #212529;
|
|
2145
|
-
}
|
|
2146
|
-
.jodit-toolbar-content_variant_default:active:not([disabled]) {
|
|
2147
|
-
background-color: #dae0e5;
|
|
2148
|
-
color: #212529;
|
|
2149
|
-
}
|
|
2150
|
-
.jodit-toolbar-content_variant_default:active:not([disabled]) svg {
|
|
2151
|
-
fill: #212529;
|
|
2152
|
-
stroke: #212529;
|
|
2153
|
-
}
|
|
2154
|
-
.jodit-toolbar-content_variant_default:focus:not([disabled]) {
|
|
2155
|
-
outline: 1px dashed #dae0e5;
|
|
2156
|
-
}
|
|
2157
|
-
.jodit-toolbar-content_variant_primary {
|
|
2158
|
-
background-color: #007bff;
|
|
2159
|
-
color: #fff;
|
|
2160
|
-
}
|
|
2161
|
-
.jodit-toolbar-content_variant_primary svg {
|
|
2162
|
-
fill: #fff;
|
|
2163
|
-
stroke: #fff;
|
|
2164
|
-
}
|
|
2165
|
-
.jodit-toolbar-content_variant_primary [disabled] {
|
|
2166
|
-
opacity: 0.7;
|
|
2167
|
-
}
|
|
2168
|
-
.jodit-toolbar-content_variant_primary:hover:not([disabled]) {
|
|
2169
|
-
background-color: #0069d9;
|
|
2170
|
-
color: #fff;
|
|
2171
|
-
}
|
|
2172
|
-
.jodit-toolbar-content_variant_primary:hover:not([disabled]) svg {
|
|
2173
|
-
fill: #fff;
|
|
2174
|
-
stroke: #fff;
|
|
2175
|
-
}
|
|
2176
|
-
.jodit-toolbar-content_variant_primary:active:not([disabled]) {
|
|
2177
|
-
background-color: #0062cc;
|
|
2178
|
-
color: #fff;
|
|
2179
|
-
}
|
|
2180
|
-
.jodit-toolbar-content_variant_primary:active:not([disabled]) svg {
|
|
2181
|
-
fill: #fff;
|
|
2182
|
-
stroke: #fff;
|
|
2183
|
-
}
|
|
2184
|
-
.jodit-toolbar-content_variant_primary:focus:not([disabled]) {
|
|
2185
|
-
outline: 1px dashed #0062cc;
|
|
2186
|
-
}
|
|
2187
|
-
.jodit-toolbar-content_variant_secondary {
|
|
2188
|
-
background-color: #d8d8d8;
|
|
2189
|
-
color: #212529;
|
|
2190
|
-
border-radius: 0;
|
|
2191
|
-
}
|
|
2192
|
-
.jodit-toolbar-content_variant_secondary svg {
|
|
2193
|
-
fill: #212529;
|
|
2194
|
-
stroke: #212529;
|
|
2195
|
-
}
|
|
2196
|
-
.jodit-toolbar-content_variant_secondary [disabled] {
|
|
2197
|
-
opacity: 0.7;
|
|
2198
|
-
}
|
|
2199
|
-
.jodit-toolbar-content_variant_secondary:hover:not([disabled]) {
|
|
2200
|
-
background-color: #c9cdd1;
|
|
2201
|
-
color: #212529;
|
|
2202
|
-
}
|
|
2203
|
-
.jodit-toolbar-content_variant_secondary:hover:not([disabled]) svg {
|
|
2204
|
-
fill: #212529;
|
|
2205
|
-
stroke: #212529;
|
|
2206
|
-
}
|
|
2207
|
-
.jodit-toolbar-content_variant_secondary:active:not([disabled]) {
|
|
2208
|
-
background-color: #dae0e5;
|
|
2209
|
-
color: #212529;
|
|
2210
|
-
}
|
|
2211
|
-
.jodit-toolbar-content_variant_secondary:active:not([disabled]) svg {
|
|
2212
|
-
fill: #212529;
|
|
2213
|
-
stroke: #212529;
|
|
2214
|
-
}
|
|
2215
|
-
.jodit-toolbar-content_variant_secondary:focus:not([disabled]) {
|
|
2216
|
-
outline: 1px dashed #dae0e5;
|
|
2217
|
-
}
|
|
2218
|
-
.jodit-toolbar-content_variant_success {
|
|
2219
|
-
background-color: #28a745;
|
|
2220
|
-
color: #fff;
|
|
2221
|
-
}
|
|
2222
|
-
.jodit-toolbar-content_variant_success svg {
|
|
2223
|
-
fill: #fff;
|
|
2224
|
-
stroke: #fff;
|
|
2225
|
-
}
|
|
2226
|
-
.jodit-toolbar-content_variant_success [disabled] {
|
|
2227
|
-
opacity: 0.7;
|
|
2228
|
-
}
|
|
2229
|
-
.jodit-toolbar-content_variant_success:hover:not([disabled]) {
|
|
2230
|
-
background-color: #218838;
|
|
2231
|
-
color: #fff;
|
|
2232
|
-
}
|
|
2233
|
-
.jodit-toolbar-content_variant_success:hover:not([disabled]) svg {
|
|
2234
|
-
fill: #fff;
|
|
2235
|
-
stroke: #fff;
|
|
2236
|
-
}
|
|
2237
|
-
.jodit-toolbar-content_variant_success:active:not([disabled]) {
|
|
2238
|
-
background-color: #1e7e34;
|
|
2239
|
-
color: #fff;
|
|
2240
|
-
}
|
|
2241
|
-
.jodit-toolbar-content_variant_success:active:not([disabled]) svg {
|
|
2242
|
-
fill: #fff;
|
|
2243
|
-
stroke: #fff;
|
|
2244
|
-
}
|
|
2245
|
-
.jodit-toolbar-content_variant_success:focus:not([disabled]) {
|
|
2246
|
-
outline: 1px dashed #1e7e34;
|
|
2247
|
-
}
|
|
2248
|
-
.jodit-toolbar-content_variant_danger {
|
|
2249
|
-
background-color: #dc3545;
|
|
2250
|
-
color: #fff;
|
|
2251
|
-
}
|
|
2252
|
-
.jodit-toolbar-content_variant_danger svg {
|
|
2253
|
-
fill: #fff;
|
|
2254
|
-
stroke: #fff;
|
|
2255
|
-
}
|
|
2256
|
-
.jodit-toolbar-content_variant_danger [disabled] {
|
|
2257
|
-
opacity: 0.7;
|
|
2258
|
-
}
|
|
2259
|
-
.jodit-toolbar-content_variant_danger:hover:not([disabled]) {
|
|
2260
|
-
background-color: #c82333;
|
|
2261
|
-
color: #fff;
|
|
2262
|
-
}
|
|
2263
|
-
.jodit-toolbar-content_variant_danger:hover:not([disabled]) svg {
|
|
2264
|
-
fill: #fff;
|
|
2265
|
-
stroke: #fff;
|
|
2266
|
-
}
|
|
2267
|
-
.jodit-toolbar-content_variant_danger:active:not([disabled]) {
|
|
2268
|
-
background-color: #bd2130;
|
|
2269
|
-
color: #fff;
|
|
2270
|
-
}
|
|
2271
|
-
.jodit-toolbar-content_variant_danger:active:not([disabled]) svg {
|
|
2272
|
-
fill: #fff;
|
|
2273
|
-
stroke: #fff;
|
|
2274
|
-
}
|
|
2275
|
-
.jodit-toolbar-content_variant_danger:focus:not([disabled]) {
|
|
2276
|
-
outline: 1px dashed #bd2130;
|
|
2277
|
-
}
|
|
2278
|
-
.jodit-toolbar-content:hover:not([disabled]) {
|
|
2279
|
-
background-color: transparent;
|
|
2280
|
-
opacity: 1;
|
|
2281
|
-
outline: 0;
|
|
2282
|
-
}
|
|
2283
|
-
|
|
2284
|
-
/*!
|
|
2285
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2286
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2287
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2288
|
-
*/
|
|
2289
|
-
/*!
|
|
2290
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2291
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2292
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2293
|
-
*/
|
|
2294
|
-
:root {
|
|
2295
|
-
--jd-first_column: 31%;
|
|
2296
|
-
--jd-cols: 4;
|
|
2297
|
-
--jd-info-background: #e9e9e9;
|
|
2298
|
-
--jd-icon-size: 12px;
|
|
2299
|
-
--jd-col_size: 150px;
|
|
2300
|
-
}
|
|
2301
|
-
.jodit-filebrowser {
|
|
2302
|
-
display: flex;
|
|
2303
|
-
height: 100%;
|
|
2304
|
-
font-family: var(--jd-font-default);
|
|
2305
|
-
}
|
|
2306
|
-
.jodit-filebrowser_no-files_true {
|
|
2307
|
-
padding: var(--jd-padding-default);
|
|
2308
|
-
}
|
|
2309
|
-
@media (max-width: 480px) {
|
|
2310
|
-
.jodit-filebrowser {
|
|
2311
|
-
flex-flow: column-reverse;
|
|
2312
|
-
}
|
|
2313
|
-
}
|
|
2314
|
-
.jodit-filebrowser__status {
|
|
2315
|
-
position: absolute;
|
|
2316
|
-
right: 0;
|
|
2317
|
-
bottom: 0;
|
|
2318
|
-
left: 0;
|
|
2319
|
-
padding: 6px;
|
|
2320
|
-
border-top: 1px solid rgba(127, 127, 127, 0.4);
|
|
2321
|
-
background-color: #4a4a4a;
|
|
2322
|
-
color: #b38888;
|
|
2323
|
-
font-size: 12px;
|
|
2324
|
-
opacity: 0;
|
|
2325
|
-
text-align: right;
|
|
2326
|
-
transition: opacity 0.3s linear;
|
|
2327
|
-
visibility: hidden;
|
|
2328
|
-
word-break: break-all;
|
|
2329
|
-
}
|
|
2330
|
-
.jodit-filebrowser__status_success_true {
|
|
2331
|
-
color: #c5c5c5;
|
|
2332
|
-
}
|
|
2333
|
-
.jodit-filebrowser__status_active_true {
|
|
2334
|
-
opacity: 1;
|
|
2335
|
-
visibility: visible;
|
|
2336
|
-
}
|
|
2337
|
-
.jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
|
|
2338
|
-
display: flex;
|
|
2339
|
-
align-items: center;
|
|
2340
|
-
padding-left: var(--jd-padding-default);
|
|
2341
|
-
}
|
|
2342
|
-
/*!
|
|
2343
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2344
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2345
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2346
|
-
*/
|
|
2347
|
-
.jodit-filebrowser-preview {
|
|
2348
|
-
position: relative;
|
|
2349
|
-
display: flex;
|
|
2350
|
-
min-width: 400px;
|
|
2351
|
-
max-width: min(100%, 1000px);
|
|
2352
|
-
height: 100%;
|
|
2353
|
-
min-height: min(100%, 500px);
|
|
2354
|
-
max-height: 100%;
|
|
2355
|
-
align-items: center;
|
|
2356
|
-
justify-content: center;
|
|
2357
|
-
margin: auto;
|
|
2358
|
-
text-align: center;
|
|
2359
|
-
}
|
|
2360
|
-
@media (max-width: 768px) {
|
|
2361
|
-
.jodit-filebrowser-preview {
|
|
2362
|
-
min-width: auto;
|
|
2363
|
-
max-width: 100%;
|
|
2364
|
-
height: 100%;
|
|
2365
|
-
min-height: auto;
|
|
2366
|
-
max-height: 100%;
|
|
2367
|
-
}
|
|
2368
|
-
}
|
|
2369
|
-
.jodit-filebrowser-preview__box {
|
|
2370
|
-
display: flex;
|
|
2371
|
-
flex-grow: 1;
|
|
2372
|
-
align-items: center;
|
|
2373
|
-
justify-content: center;
|
|
2374
|
-
}
|
|
2375
|
-
.jodit-filebrowser-preview__navigation {
|
|
2376
|
-
position: absolute;
|
|
2377
|
-
top: 0;
|
|
2378
|
-
left: 0;
|
|
2379
|
-
height: 100%;
|
|
2380
|
-
cursor: pointer;
|
|
2381
|
-
}
|
|
2382
|
-
.jodit-filebrowser-preview__navigation_arrow_next {
|
|
2383
|
-
right: 0;
|
|
2384
|
-
left: auto;
|
|
2385
|
-
}
|
|
2386
|
-
.jodit-filebrowser-preview__navigation svg {
|
|
2387
|
-
position: relative;
|
|
2388
|
-
top: 50%;
|
|
2389
|
-
width: 45px;
|
|
2390
|
-
height: 45px;
|
|
2391
|
-
fill: #9e9ba7;
|
|
2392
|
-
transform: translateY(-50%);
|
|
2393
|
-
transition: fill 0.3s linear;
|
|
2394
|
-
}
|
|
2395
|
-
.jodit-filebrowser-preview__navigation:hover svg {
|
|
2396
|
-
fill: #000;
|
|
2397
|
-
}
|
|
2398
|
-
.jodit-filebrowser-preview img {
|
|
2399
|
-
max-width: 100%;
|
|
2400
|
-
max-height: 100%;
|
|
2401
|
-
}
|
|
2402
|
-
|
|
2403
|
-
/*!
|
|
2404
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2405
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2406
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2407
|
-
*/
|
|
2408
|
-
:root {
|
|
2409
|
-
--jd-image_editor_resizer_border_color: #05ff00;
|
|
2410
|
-
--jd-image_editor_resizer_target_size: padding-default;
|
|
2411
|
-
--jd-image_editor_resizer_target_border_color: #383838;
|
|
2412
|
-
--jd-image_editor_resizer_target_bg_color: #8c7878;
|
|
2413
|
-
}
|
|
2414
|
-
.jodit-image-editor {
|
|
2415
|
-
overflow: hidden;
|
|
2416
|
-
width: 100%;
|
|
2417
|
-
height: 100%;
|
|
2418
|
-
padding: var(--jd-padding-default);
|
|
2419
|
-
}
|
|
2420
|
-
@media (max-width: 768px) {
|
|
2421
|
-
.jodit-image-editor {
|
|
2422
|
-
height: auto;
|
|
2423
|
-
}
|
|
2424
|
-
}
|
|
2425
|
-
.jodit-image-editor > div,
|
|
2426
|
-
.jodit-image-editor > div > div {
|
|
2427
|
-
height: 100%;
|
|
2428
|
-
}
|
|
2429
|
-
@media (max-width: 768px) {
|
|
2430
|
-
.jodit-image-editor > div,
|
|
2431
|
-
.jodit-image-editor > div > div {
|
|
2432
|
-
height: auto;
|
|
2433
|
-
min-height: 200px;
|
|
2434
|
-
}
|
|
2435
|
-
}
|
|
2436
|
-
.jodit-image-editor * {
|
|
2437
|
-
box-sizing: border-box;
|
|
2438
|
-
}
|
|
2439
|
-
.jodit-image-editor .jodit-image-editor__slider-title {
|
|
2440
|
-
padding: 0.8em 1em;
|
|
2441
|
-
border-bottom: 1px solid rgba(158, 158, 158, 0.31);
|
|
2442
|
-
background-color: #f9f9f9;
|
|
2443
|
-
color: #333333;
|
|
2444
|
-
cursor: pointer;
|
|
2445
|
-
font-weight: bold;
|
|
2446
|
-
line-height: 1em;
|
|
2447
|
-
text-overflow: ellipsis;
|
|
2448
|
-
text-shadow: #f3f3f3 0 1px 0;
|
|
2449
|
-
user-select: none;
|
|
2450
|
-
white-space: nowrap;
|
|
2451
|
-
}
|
|
2452
|
-
.jodit-image-editor .jodit-image-editor__slider-title svg {
|
|
2453
|
-
display: inline-block;
|
|
2454
|
-
width: 16px;
|
|
2455
|
-
margin-right: var(--jd-padding-default);
|
|
2456
|
-
vertical-align: middle;
|
|
2457
|
-
}
|
|
2458
|
-
.jodit-image-editor .jodit-image-editor__slider-content {
|
|
2459
|
-
display: none;
|
|
2460
|
-
}
|
|
2461
|
-
.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title {
|
|
2462
|
-
background-color: #5d5d5d;
|
|
2463
|
-
color: #fff;
|
|
2464
|
-
text-shadow: #000 0 1px 0;
|
|
2465
|
-
}
|
|
2466
|
-
.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title svg {
|
|
2467
|
-
fill: white;
|
|
2468
|
-
}
|
|
2469
|
-
.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-content {
|
|
2470
|
-
display: block;
|
|
2471
|
-
}
|
|
2472
|
-
.jodit-image-editor__area {
|
|
2473
|
-
position: relative;
|
|
2474
|
-
display: none;
|
|
2475
|
-
overflow: hidden;
|
|
2476
|
-
width: 100%;
|
|
2477
|
-
height: 100%;
|
|
2478
|
-
background-color: #eee;
|
|
2479
|
-
background-image: linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border)), linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border));
|
|
2480
|
-
background-position: 0 0, 15px 15px;
|
|
2481
|
-
background-size: 30px 30px;
|
|
2482
|
-
user-select: none;
|
|
2483
|
-
}
|
|
2484
|
-
.jodit-image-editor__area.jodit-image-editor_active {
|
|
2485
|
-
display: block;
|
|
2486
|
-
}
|
|
2487
|
-
.jodit-image-editor__area .jodit-image-editor__box {
|
|
2488
|
-
position: relative;
|
|
2489
|
-
z-index: 1;
|
|
2490
|
-
overflow: hidden;
|
|
2491
|
-
height: 100%;
|
|
2492
|
-
pointer-events: none;
|
|
2493
|
-
}
|
|
2494
|
-
.jodit-image-editor__area .jodit-image-editor__box img {
|
|
2495
|
-
max-width: 100%;
|
|
2496
|
-
max-height: 100%;
|
|
2497
|
-
user-select: none;
|
|
2498
|
-
}
|
|
2499
|
-
.jodit-image-editor__area .jodit-image-editor__croper,
|
|
2500
|
-
.jodit-image-editor__area .jodit-image-editor__resizer {
|
|
2501
|
-
position: absolute;
|
|
2502
|
-
z-index: 2;
|
|
2503
|
-
top: var(--jd-padding-default);
|
|
2504
|
-
left: 20px;
|
|
2505
|
-
width: 100px;
|
|
2506
|
-
height: 100px;
|
|
2507
|
-
border: 1px solid #fff;
|
|
2508
|
-
background-repeat: no-repeat;
|
|
2509
|
-
box-shadow: 0 0 11px #000;
|
|
2510
|
-
pointer-events: none;
|
|
2511
|
-
}
|
|
2512
|
-
.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright,
|
|
2513
|
-
.jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright {
|
|
2514
|
-
position: absolute;
|
|
2515
|
-
z-index: 4;
|
|
2516
|
-
right: calc(var(--jd-padding-default) * -1);
|
|
2517
|
-
bottom: calc(var(--jd-padding-default) * -1);
|
|
2518
|
-
display: inline-block;
|
|
2519
|
-
width: 20px;
|
|
2520
|
-
height: 20px;
|
|
2521
|
-
border: 1px solid var(--jd-image_editor_resizer_target_border_color);
|
|
2522
|
-
background-color: var(--jd-image_editor_resizer_target_bg_color);
|
|
2523
|
-
border-radius: 50%;
|
|
2524
|
-
box-shadow: 0 0 11px #000;
|
|
2525
|
-
cursor: se-resize;
|
|
2526
|
-
pointer-events: all;
|
|
2527
|
-
}
|
|
2528
|
-
.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright:active,
|
|
2529
|
-
.jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright:active {
|
|
2530
|
-
border: 1px solid yellow;
|
|
2531
|
-
}
|
|
2532
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop {
|
|
2533
|
-
position: relative;
|
|
2534
|
-
height: 100%;
|
|
2535
|
-
background: #eee;
|
|
2536
|
-
line-height: 100%;
|
|
2537
|
-
text-align: center;
|
|
2538
|
-
}
|
|
2539
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box {
|
|
2540
|
-
overflow: visible;
|
|
2541
|
-
height: 100%;
|
|
2542
|
-
line-height: 100%;
|
|
2543
|
-
pointer-events: all;
|
|
2544
|
-
text-align: left;
|
|
2545
|
-
}
|
|
2546
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box img {
|
|
2547
|
-
width: 100%;
|
|
2548
|
-
max-width: 100%;
|
|
2549
|
-
height: 100%;
|
|
2550
|
-
max-height: 100%;
|
|
2551
|
-
}
|
|
2552
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box::after {
|
|
2553
|
-
position: absolute;
|
|
2554
|
-
z-index: 1;
|
|
2555
|
-
top: 0;
|
|
2556
|
-
right: 0;
|
|
2557
|
-
bottom: 0;
|
|
2558
|
-
left: 0;
|
|
2559
|
-
margin: auto;
|
|
2560
|
-
background: rgba(255, 255, 255, 0.3);
|
|
2561
|
-
content: '';
|
|
2562
|
-
}
|
|
2563
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper {
|
|
2564
|
-
cursor: move;
|
|
2565
|
-
pointer-events: all;
|
|
2566
|
-
}
|
|
2567
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper i.jodit-image-editor__sizes {
|
|
2568
|
-
position: absolute;
|
|
2569
|
-
bottom: -30px;
|
|
2570
|
-
left: 100%;
|
|
2571
|
-
display: block;
|
|
2572
|
-
padding: 9px 6px;
|
|
2573
|
-
background: rgba(0, 0, 0, 0.2);
|
|
2574
|
-
border-radius: 0.4em;
|
|
2575
|
-
color: #ffffff;
|
|
2576
|
-
font-size: 12px;
|
|
2577
|
-
text-align: center;
|
|
2578
|
-
text-shadow: none;
|
|
2579
|
-
white-space: pre;
|
|
2580
|
-
}
|
|
2581
|
-
.jodit-image-editor__area.jodit-image-editor__area_crop.jodit-image-editor_active {
|
|
2582
|
-
display: flex;
|
|
2583
|
-
align-items: center;
|
|
2584
|
-
justify-content: center;
|
|
2585
|
-
}
|
|
2586
|
-
|
|
2587
|
-
.jodit-filebrowser-files {
|
|
2588
|
-
position: relative;
|
|
2589
|
-
display: none;
|
|
2590
|
-
height: 100%;
|
|
2591
|
-
vertical-align: top;
|
|
2592
|
-
overflow-anchor: auto;
|
|
2593
|
-
}
|
|
2594
|
-
.jodit-filebrowser-files .jodit-button {
|
|
2595
|
-
border-radius: 0;
|
|
2596
|
-
}
|
|
2597
|
-
.jodit-filebrowser-files_loading_true:before {
|
|
2598
|
-
position: absolute;
|
|
2599
|
-
top: 0;
|
|
2600
|
-
left: 0;
|
|
2601
|
-
width: 100%;
|
|
2602
|
-
height: 100%;
|
|
2603
|
-
content: '';
|
|
2604
|
-
}
|
|
2605
|
-
.jodit-filebrowser-files_loading_true:after {
|
|
2606
|
-
position: absolute;
|
|
2607
|
-
top: 50%;
|
|
2608
|
-
left: 50%;
|
|
2609
|
-
margin-top: calc(var(--jd-icon-loader-size) / -2);
|
|
2610
|
-
margin-left: calc(var(--jd-icon-loader-size) / -2);
|
|
2611
|
-
content: '';
|
|
2612
|
-
opacity: 0.7;
|
|
2613
|
-
display: inline-block;
|
|
2614
|
-
width: var(--jd-icon-loader-size);
|
|
2615
|
-
height: var(--jd-icon-loader-size);
|
|
2616
|
-
animation: rotate 2s ease-out 0s infinite;
|
|
2617
|
-
background: url(data:image/png;base64,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) no-repeat center;
|
|
2618
|
-
background-size: 100% 100%;
|
|
2619
|
-
vertical-align: middle;
|
|
2620
|
-
will-change: transform;
|
|
2621
|
-
}
|
|
2622
|
-
.jodit-filebrowser-files_active_true {
|
|
2623
|
-
display: flex;
|
|
2624
|
-
}
|
|
2625
|
-
.jodit-filebrowser-files::-webkit-scrollbar {
|
|
2626
|
-
width: calc(var(--jd-padding-default) / 2);
|
|
2627
|
-
}
|
|
2628
|
-
.jodit-filebrowser-files::-webkit-scrollbar-track {
|
|
2629
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
2630
|
-
}
|
|
2631
|
-
.jodit-filebrowser-files::-webkit-scrollbar-thumb {
|
|
2632
|
-
background-color: darkgrey;
|
|
2633
|
-
outline: 1px solid slategrey;
|
|
2634
|
-
}
|
|
2635
|
-
.jodit-filebrowser-files_active_true {
|
|
2636
|
-
width: 100%;
|
|
2637
|
-
flex-wrap: wrap;
|
|
2638
|
-
align-content: flex-start;
|
|
2639
|
-
padding: calc(var(--jd-padding-default) / 2);
|
|
2640
|
-
overflow-y: auto;
|
|
2641
|
-
}
|
|
2642
|
-
.jodit-filebrowser-files__item {
|
|
2643
|
-
position: relative;
|
|
2644
|
-
display: flex;
|
|
2645
|
-
overflow: hidden;
|
|
2646
|
-
width: var(--jd-col_size);
|
|
2647
|
-
height: var(--jd-col_size);
|
|
2648
|
-
align-items: center;
|
|
2649
|
-
justify-content: center;
|
|
2650
|
-
border: 1px solid var(--jd-color-border);
|
|
2651
|
-
margin: calc(var(--jd-padding-default) / 2);
|
|
2652
|
-
font-size: 0;
|
|
2653
|
-
text-align: center;
|
|
2654
|
-
transition: border 0.1s linear, bottom 0.1s linear;
|
|
2655
|
-
}
|
|
2656
|
-
@media (max-width: 480px) {
|
|
2657
|
-
.jodit-filebrowser-files__item {
|
|
2658
|
-
width: calc(50% - var(--jd-padding-default));
|
|
2659
|
-
}
|
|
2660
|
-
}
|
|
2661
|
-
.jodit-filebrowser-files__item img {
|
|
2662
|
-
max-width: 100%;
|
|
2663
|
-
}
|
|
2664
|
-
.jodit-filebrowser-files__item:hover {
|
|
2665
|
-
border-color: #433b5c;
|
|
2666
|
-
}
|
|
2667
|
-
.jodit-filebrowser-files__item_active_true {
|
|
2668
|
-
border-color: var(--jd-color-border-selected);
|
|
2669
|
-
background-color: var(--jd-color-border-active);
|
|
2670
|
-
}
|
|
2671
|
-
.jodit-filebrowser-files__item_active_true .jodit-filebrowser-files__item-info {
|
|
2672
|
-
background-color: var(--jd-color-border-active);
|
|
2673
|
-
color: white;
|
|
2674
|
-
text-shadow: none;
|
|
2675
|
-
}
|
|
2676
|
-
.jodit-filebrowser-files__item-info {
|
|
2677
|
-
position: absolute;
|
|
2678
|
-
right: 0;
|
|
2679
|
-
bottom: 0;
|
|
2680
|
-
left: 0;
|
|
2681
|
-
overflow: visible;
|
|
2682
|
-
padding: 0.3em 0.6em;
|
|
2683
|
-
background-color: var(--jd-info-background);
|
|
2684
|
-
color: #333333;
|
|
2685
|
-
font-size: 14px;
|
|
2686
|
-
line-height: 16px;
|
|
2687
|
-
opacity: 0.85;
|
|
2688
|
-
text-align: left;
|
|
2689
|
-
text-shadow: #eeeeee 0 1px 0;
|
|
2690
|
-
transition: opacity 400ms ease;
|
|
2691
|
-
white-space: normal;
|
|
2692
|
-
}
|
|
2693
|
-
.jodit-filebrowser-files__item-info > span {
|
|
2694
|
-
display: block;
|
|
2695
|
-
overflow: hidden;
|
|
2696
|
-
font-size: 0.75em;
|
|
2697
|
-
text-overflow: ellipsis;
|
|
2698
|
-
white-space: nowrap;
|
|
2699
|
-
}
|
|
2700
|
-
.jodit-filebrowser-files__item-info > span.jodit-filebrowser-files__item-info-filename {
|
|
2701
|
-
font-size: 0.9em;
|
|
2702
|
-
font-weight: bold;
|
|
2703
|
-
}
|
|
2704
|
-
.jodit-filebrowser-files__item:hover:not(.jodit-filebrowser-files__item_active_true) .jodit-filebrowser-files__item-info {
|
|
2705
|
-
bottom: -100px;
|
|
2706
|
-
}
|
|
2707
|
-
.jodit-filebrowser-files_view_list {
|
|
2708
|
-
scroll-behavior: smooth;
|
|
2709
|
-
}
|
|
2710
|
-
.jodit-filebrowser-files_view_list a {
|
|
2711
|
-
display: block;
|
|
2712
|
-
width: 100%;
|
|
2713
|
-
height: 26px;
|
|
2714
|
-
border-width: 0 0 1px 0;
|
|
2715
|
-
margin: 0;
|
|
2716
|
-
line-height: 26px;
|
|
2717
|
-
text-align: left;
|
|
2718
|
-
white-space: nowrap;
|
|
2719
|
-
}
|
|
2720
|
-
.jodit-filebrowser-files_view_list a img {
|
|
2721
|
-
display: inline-block;
|
|
2722
|
-
min-width: 16px;
|
|
2723
|
-
max-width: 16px;
|
|
2724
|
-
margin-left: 4px;
|
|
2725
|
-
vertical-align: middle;
|
|
2726
|
-
}
|
|
2727
|
-
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info {
|
|
2728
|
-
position: static;
|
|
2729
|
-
display: inline-block;
|
|
2730
|
-
width: calc(100% - 20px);
|
|
2731
|
-
height: 100%;
|
|
2732
|
-
padding: 0;
|
|
2733
|
-
margin-left: 4px;
|
|
2734
|
-
background-color: transparent;
|
|
2735
|
-
font-size: 0;
|
|
2736
|
-
line-height: inherit;
|
|
2737
|
-
vertical-align: middle;
|
|
2738
|
-
}
|
|
2739
|
-
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info > span {
|
|
2740
|
-
display: inline-block;
|
|
2741
|
-
height: 100%;
|
|
2742
|
-
font-size: 12px;
|
|
2743
|
-
}
|
|
2744
|
-
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filename {
|
|
2745
|
-
width: 50%;
|
|
2746
|
-
}
|
|
2747
|
-
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filesize {
|
|
2748
|
-
width: 25%;
|
|
2749
|
-
}
|
|
2750
|
-
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filechanged {
|
|
2751
|
-
width: 25%;
|
|
2752
|
-
}
|
|
2753
|
-
.jodit-filebrowser-files_view_list a:hover {
|
|
2754
|
-
background-color: #433b5c;
|
|
2755
|
-
}
|
|
2756
|
-
.jodit-filebrowser-files_view_list a:hover .jodit-filebrowser-files__item-info {
|
|
2757
|
-
color: #fff;
|
|
2758
|
-
text-shadow: none;
|
|
2759
|
-
}
|
|
2760
|
-
.jodit-filebrowser-files_view_list a::before {
|
|
2761
|
-
display: inline-block;
|
|
2762
|
-
height: 100%;
|
|
2763
|
-
content: '';
|
|
2764
|
-
vertical-align: middle;
|
|
2765
|
-
}
|
|
2766
|
-
|
|
2767
|
-
:root {
|
|
2768
|
-
--jd-color-folder-title: #b1b1b1;
|
|
2769
|
-
}
|
|
2770
|
-
.jodit-filebrowser-tree {
|
|
2771
|
-
position: relative;
|
|
2772
|
-
display: none;
|
|
2773
|
-
height: 100%;
|
|
2774
|
-
vertical-align: top;
|
|
2775
|
-
overflow-anchor: auto;
|
|
2776
|
-
}
|
|
2777
|
-
.jodit-filebrowser-tree .jodit-button {
|
|
2778
|
-
border-radius: 0;
|
|
2779
|
-
}
|
|
2780
|
-
.jodit-filebrowser-tree_active_true {
|
|
2781
|
-
display: flex;
|
|
2782
|
-
}
|
|
2783
|
-
.jodit-filebrowser-tree_loading_true:before {
|
|
2784
|
-
position: absolute;
|
|
2785
|
-
top: 0;
|
|
2786
|
-
left: 0;
|
|
2787
|
-
width: 100%;
|
|
2788
|
-
height: 100%;
|
|
2789
|
-
content: '';
|
|
2790
|
-
}
|
|
2791
|
-
.jodit-filebrowser-tree_loading_true:after {
|
|
2792
|
-
position: absolute;
|
|
2793
|
-
top: 50%;
|
|
2794
|
-
left: 50%;
|
|
2795
|
-
margin-top: calc(var(--jd-icon-loader-size) / -2);
|
|
2796
|
-
margin-left: calc(var(--jd-icon-loader-size) / -2);
|
|
2797
|
-
content: '';
|
|
2798
|
-
opacity: 0.7;
|
|
2799
|
-
display: inline-block;
|
|
2800
|
-
width: var(--jd-icon-loader-size);
|
|
2801
|
-
height: var(--jd-icon-loader-size);
|
|
2802
|
-
animation: rotate 2s ease-out 0s infinite;
|
|
2803
|
-
background: url(data:image/png;base64,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) no-repeat center;
|
|
2804
|
-
background-size: 100% 100%;
|
|
2805
|
-
vertical-align: middle;
|
|
2806
|
-
will-change: transform;
|
|
2807
|
-
}
|
|
2808
|
-
.jodit-filebrowser-tree::-webkit-scrollbar {
|
|
2809
|
-
width: calc(var(--jd-padding-default) / 2);
|
|
2810
|
-
}
|
|
2811
|
-
.jodit-filebrowser-tree::-webkit-scrollbar-track {
|
|
2812
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
2813
|
-
}
|
|
2814
|
-
.jodit-filebrowser-tree::-webkit-scrollbar-thumb {
|
|
2815
|
-
background-color: darkgrey;
|
|
2816
|
-
outline: 1px solid slategrey;
|
|
2817
|
-
}
|
|
2818
|
-
.jodit-filebrowser-tree_active_true {
|
|
2819
|
-
z-index: 2;
|
|
2820
|
-
width: var(--jd-first_column);
|
|
2821
|
-
min-width: 200px;
|
|
2822
|
-
max-width: 290px;
|
|
2823
|
-
flex-direction: column;
|
|
2824
|
-
background-color: var(--jd-color-background-filebrowser-folders);
|
|
2825
|
-
overflow-y: auto;
|
|
2826
|
-
}
|
|
2827
|
-
@media (max-width: 480px) {
|
|
2828
|
-
.jodit-filebrowser-tree_active_true {
|
|
2829
|
-
width: auto;
|
|
2830
|
-
max-width: 100%;
|
|
2831
|
-
height: 100px;
|
|
2832
|
-
}
|
|
2833
|
-
}
|
|
2834
|
-
.jodit-filebrowser-tree_active_true::-webkit-scrollbar {
|
|
2835
|
-
width: calc(var(--jd-padding-default) / 2);
|
|
2836
|
-
}
|
|
2837
|
-
.jodit-filebrowser-tree_active_true::-webkit-scrollbar-track {
|
|
2838
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
2839
|
-
}
|
|
2840
|
-
.jodit-filebrowser-tree_active_true::-webkit-scrollbar-thumb {
|
|
2841
|
-
background-color: rgba(127, 127, 127, 0.5);
|
|
2842
|
-
outline: 1px solid slategrey;
|
|
2843
|
-
}
|
|
2844
|
-
.jodit-filebrowser-tree__item {
|
|
2845
|
-
position: relative;
|
|
2846
|
-
display: flex;
|
|
2847
|
-
min-height: 38px;
|
|
2848
|
-
align-items: center;
|
|
2849
|
-
justify-content: space-between;
|
|
2850
|
-
padding: calc(var(--jd-padding-default) / 2) var(--jd-padding-default);
|
|
2851
|
-
border-bottom: 1px solid #474747;
|
|
2852
|
-
color: var(--jd-color-folder-title);
|
|
2853
|
-
text-decoration: none;
|
|
2854
|
-
transition: background-color 0.2s ease 0s;
|
|
2855
|
-
word-break: break-all;
|
|
2856
|
-
}
|
|
2857
|
-
.jodit-filebrowser-tree__item-title {
|
|
2858
|
-
flex: 1;
|
|
2859
|
-
color: var(--jd-color-folder-title);
|
|
2860
|
-
}
|
|
2861
|
-
.jodit-filebrowser-tree__item .jodit-icon_folder {
|
|
2862
|
-
display: flex;
|
|
2863
|
-
width: calc(var(--jd-icon-size) + 4px);
|
|
2864
|
-
height: calc(var(--jd-icon-size) + 4px);
|
|
2865
|
-
align-items: center;
|
|
2866
|
-
justify-content: center;
|
|
2867
|
-
margin-left: calc(var(--jd-padding-default) / 2);
|
|
2868
|
-
opacity: 0.3;
|
|
2869
|
-
}
|
|
2870
|
-
.jodit-filebrowser-tree__item .jodit-icon_folder svg {
|
|
2871
|
-
width: var(--jd-icon-size);
|
|
2872
|
-
height: var(--jd-icon-size);
|
|
2873
|
-
fill: var(--jd-color-folder-title) !important;
|
|
2874
|
-
stroke: var(--jd-color-folder-title) !important;
|
|
2875
|
-
}
|
|
2876
|
-
.jodit-filebrowser-tree__item .jodit-icon_folder:hover {
|
|
2877
|
-
background: #696969;
|
|
2878
|
-
}
|
|
2879
|
-
.jodit-filebrowser-tree__item:hover {
|
|
2880
|
-
background-color: var(--jd-color-background-button-hover);
|
|
2881
|
-
}
|
|
2882
|
-
.jodit-filebrowser-tree__item:hover-title {
|
|
2883
|
-
color: var(--jd-color-text);
|
|
2884
|
-
}
|
|
2885
|
-
.jodit-filebrowser-tree__item:hover i.jodit-icon_folder {
|
|
2886
|
-
opacity: 0.6;
|
|
2887
|
-
}
|
|
2888
|
-
.jodit-filebrowser-tree__source-title {
|
|
2889
|
-
position: relative;
|
|
2890
|
-
display: block;
|
|
2891
|
-
padding: 2px 4px;
|
|
2892
|
-
border-bottom: 1px solid #484848;
|
|
2893
|
-
background: #5a5a5a;
|
|
2894
|
-
color: #969696;
|
|
2895
|
-
font-size: 12px;
|
|
2896
|
-
user-select: none;
|
|
2897
|
-
word-break: break-all;
|
|
2898
|
-
}
|
|
2899
|
-
a + .jodit-filebrowser-tree__source-title {
|
|
2900
|
-
margin-top: var(--jd-padding-default);
|
|
2901
|
-
}
|
|
2902
|
-
|
|
2903
|
-
/*!
|
|
2904
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2905
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2906
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2907
|
-
*/
|
|
2908
|
-
.jodit-status-bar {
|
|
2909
|
-
display: flex;
|
|
2910
|
-
overflow: hidden;
|
|
2911
|
-
height: 20px;
|
|
2912
|
-
align-items: center;
|
|
2913
|
-
justify-content: flex-start;
|
|
2914
|
-
padding: 0 calc(var(--jd-padding-default) / 2);
|
|
2915
|
-
background-color: var(--jd-color-panel);
|
|
2916
|
-
border-radius: 0 0 var(--jd-border-radius-default) var(--jd-border-radius-default);
|
|
2917
|
-
color: var(--jd-color-text-icons);
|
|
2918
|
-
font-size: var(--jd-font-size-small);
|
|
2919
|
-
text-transform: uppercase;
|
|
2920
|
-
}
|
|
2921
|
-
.jodit-status-bar_resize-handle_true {
|
|
2922
|
-
padding-right: 14px;
|
|
2923
|
-
}
|
|
2924
|
-
.jodit-status-bar::before {
|
|
2925
|
-
flex: auto;
|
|
2926
|
-
order: 1;
|
|
2927
|
-
content: '';
|
|
2928
|
-
}
|
|
2929
|
-
.jodit-status-bar .jodit-status-bar__item {
|
|
2930
|
-
order: 0;
|
|
2931
|
-
padding: 0;
|
|
2932
|
-
margin: 0 var(--jd-padding-default) 0 0;
|
|
2933
|
-
line-height: 1.57142857em;
|
|
2934
|
-
}
|
|
2935
|
-
.jodit-status-bar .jodit-status-bar__item,
|
|
2936
|
-
.jodit-status-bar .jodit-status-bar__item > span {
|
|
2937
|
-
font-family: var(--jd-font-default);
|
|
2938
|
-
font-size: var(--jd-font-size-default);
|
|
2939
|
-
font-size: var(--jd-font-size-small);
|
|
2940
|
-
}
|
|
2941
|
-
.jodit-status-bar .jodit-status-bar__item.jodit-status-bar__item-right {
|
|
2942
|
-
order: 2;
|
|
2943
|
-
margin: 0 0 0 var(--jd-padding-default);
|
|
2944
|
-
}
|
|
2945
|
-
.jodit-status-bar .jodit-status-bar__item a {
|
|
2946
|
-
border-radius: 3px;
|
|
2947
|
-
cursor: default;
|
|
2948
|
-
text-decoration: none;
|
|
2949
|
-
}
|
|
2950
|
-
.jodit-status-bar .jodit-status-bar__item a:hover {
|
|
2951
|
-
background-color: var(--jd-color-background-gray);
|
|
2952
|
-
text-decoration: none;
|
|
2953
|
-
}
|
|
2954
|
-
.jodit-status-bar a.jodit-status-bar-link {
|
|
2955
|
-
cursor: pointer;
|
|
2956
|
-
}
|
|
2957
|
-
.jodit-status-bar a.jodit-status-bar-link,
|
|
2958
|
-
.jodit-status-bar a.jodit-status-bar-link:hover,
|
|
2959
|
-
.jodit-status-bar a.jodit-status-bar-link:visited {
|
|
2960
|
-
background-color: transparent;
|
|
2961
|
-
color: var(--jd-color-text-icons);
|
|
2962
|
-
}
|
|
2963
|
-
.jodit-status-bar a.jodit-status-bar-link:hover {
|
|
2964
|
-
text-decoration: underline;
|
|
2965
|
-
}
|
|
2966
|
-
.jodit-workplace + .jodit-status-bar:not(:empty) {
|
|
2967
|
-
border-top: 1px solid var(--jd-color-border);
|
|
2968
|
-
}
|
|
2969
|
-
.jodit_disabled .jodit-status-bar {
|
|
2970
|
-
opacity: 0.4;
|
|
2971
|
-
}
|
|
2972
|
-
|
|
2973
|
-
/*!
|
|
2974
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
2975
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
2976
|
-
* Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2977
|
-
*/
|
|
2978
|
-
.jodit-drag-and-drop__file-box,
|
|
2979
|
-
.jodit_uploadfile_button {
|
|
2980
|
-
position: relative;
|
|
2981
|
-
overflow: hidden;
|
|
2982
|
-
width: 100%;
|
|
2983
|
-
padding: 25px 0;
|
|
2984
|
-
border: dashed 1px var(--jd-color-gray);
|
|
2985
|
-
margin: var(--jd-padding-default) 0;
|
|
2986
|
-
text-align: center;
|
|
2987
|
-
}
|
|
2988
|
-
.jodit-drag-and-drop__file-box:hover,
|
|
2989
|
-
.jodit_uploadfile_button:hover {
|
|
2990
|
-
background-color: var(--jd-color-background-button-hover);
|
|
2991
|
-
}
|
|
2992
|
-
.jodit-drag-and-drop__file-box input,
|
|
2993
|
-
.jodit_uploadfile_button input {
|
|
2994
|
-
position: absolute;
|
|
2995
|
-
top: 0;
|
|
2996
|
-
right: 0;
|
|
2997
|
-
bottom: 0;
|
|
2998
|
-
left: 0;
|
|
2999
|
-
padding: 0;
|
|
3000
|
-
margin: 0;
|
|
3001
|
-
cursor: pointer;
|
|
3002
|
-
font-size: 400px;
|
|
3003
|
-
opacity: 0;
|
|
3004
|
-
}
|
|
3005
|
-
@media (max-width: 768px) {
|
|
3006
|
-
.jodit-drag-and-drop__file-box {
|
|
3007
|
-
width: auto;
|
|
3008
|
-
min-width: var(--jd-width-input-min);
|
|
3009
|
-
max-width: 100%;
|
|
3010
|
-
}
|
|
3011
|
-
}
|
|
3012
|
-
|